Accessibility in Vue Auto complete component
11 Jun 202411 minutes to read
The AutoComplete component followed the accessibility guidelines and standards, including ADA, Section 508, WCAG 2.2 standards, and WCAG roles that are commonly used to evaluate accessibility.
The accessibility compliance for the AutoComplete component is outlined below.
WAI-ARIA attributes
The AutoComplete component has been designed, keeping in mind the WAI-ARIA
specifications, and applies the WAI-ARIA
roles, states, and properties along with keyboard support
. This component is characterized by complete keyboard interaction support and ARIA accessibility support that makes it easy for people who use assistive technologies (AT) or those who completely rely on keyboard navigation.
ARIA attributes
The AutoComplete component uses the combobox
role and each list item has an option
role. The following ARIA Attributes
denote the AutoComplete state.
Property | Functionalities |
---|---|
aria-haspopup | Indicates whether the AutoComplete input element has a suggestion list or not. |
aria-expanded | Indicates whether the suggestion list has expanded or not. |
aria-selected | Indicates the selected option from the list. |
aria-readonly | Indicates the readonly state of the AutoComplete element. |
aria-disabled | Indicates whether the AutoComplete component is in a disabled state or not. |
aria-activedescendent | This attribute holds the ID of the active list item to focus its descendant child element. |
aria-owns | This attribute contains the ID of the suggestion list to indicate popup as a child element. |
aria-autocomplete | This attribute contains the ‘both’ to a list of options shows and the currently selected suggestion also shows inline. |
Keyboard interaction
You can use the following key shortcuts to access the AutoComplete without interruptions.
Keyboard shortcuts | Actions |
---|---|
Arrow Down | In popup hidden state, opens the suggestion list. In popup open state, selects the first item when no item selected else selects the item next to the currently selected item. |
Arrow Up | In popup hidden state, opens the suggestion list. In popup open state, selects the last item when no item selected else selects the item previous to the currently selected one. |
Page Down | Scrolls down to the next page and selects the first item when popup list opens. |
Page Up | Scrolls up to previous page and select the first item when popup list open. |
Enter | Selects the focused item and set to AutoComplete component. |
Tab | Focuses on the next tab indexed element when the popup is closed. Otherwise, closes the popup list and remains the focus in component suppose if it is in an open state. |
Shift + tab | Focuses the previous tab indexed element when the popup is closed. Otherwise,closes the popup list and remains the focus in component suppose if it is in an open state. |
Alt + Down | Opens the popup list. |
Alt + Up | In popup hidden state, opens the popup list. In popup open state, closes the popup list. |
Esc(Escape) | Closes the popup list when it is in an open state then remove the selection. |
Home | Cursor moves to before of first character in input. |
End | Cursor moves to next of last character in input. |
In the below sample, focus the AutoComplete component using alt+t keys.
<template>
<div id="app">
<ejs-autocomplete ref='instance' :dataSource='sportsData' :fields='fields'
:placeholder="waterMark" :created="created"></ejs-autocomplete>
</div>
</template>
<script setup>
import { ref } from "vue";
import { AutoCompleteComponent as EjsAutocomplete } from '@syncfusion/ej2-vue-dropdowns';
const instance = ref(null);
const waterMark = 'Find a game';
const sportsData = [
{ Id: 'Game1', Game: 'Badminton' },
{ Id: 'Game2', Game: 'Basketball' },
{ Id: 'Game3', Game: 'Cricket' },
{ Id: 'Game4', Game: 'Football' },
{ Id: 'Game5', Game: 'Golf' },
{ Id: 'Game6', Game: 'Hockey' },
{ Id: 'Game7', Game: 'Rugby' },
{ Id: 'Game8', Game: 'Snooker' }
];
const fields = { value: 'Game' };
const keylistener = function (evt) {
if (event.altKey && event.keyCode === 84 /* t */) {
// press alt+t to focus the control.
instance.value.focusIn();
}
}
const created = function () {
document.addEventListener('keyup', keylistener);
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-dropdowns/styles/material.css";
#app {
color: #008cff;
height: 40px;
left: 35%;
position: absolute;
top: 35%;
width: 30%;
}
</style>
<template>
<div id="app">
<ejs-autocomplete ref='instance' :dataSource='sportsData' :fields='fields'
:placeholder="waterMark" :created="created"></ejs-autocomplete>
</div>
</template>
<script>
import { AutoCompleteComponent } from '@syncfusion/ej2-vue-dropdowns';
export default {
name: "App",
components: {
"ejs-autocomplete": AutoCompleteComponent
},
data() {
return {
waterMark: 'Find a game',
sportsData: [
{ Id: 'Game1', Game: 'Badminton' },
{ Id: 'Game2', Game: 'Basketball' },
{ Id: 'Game3', Game: 'Cricket' },
{ Id: 'Game4', Game: 'Football' },
{ Id: 'Game5', Game: 'Golf' },
{ Id: 'Game6', Game: 'Hockey' },
{ Id: 'Game7', Game: 'Rugby' },
{ Id: 'Game8', Game: 'Snooker' }
],
fields: { value: 'Game' }
}
},
methods: {
keylistener: function (evt) {
if (event.altKey && event.keyCode === 84 /* t */) {
// press alt+t to focus the control.
this.$refs.instance.focusIn();
}
}
},
created: function () {
document.addEventListener('keyup', this.keylistener);
},
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-dropdowns/styles/material.css";
#app {
color: #008cff;
height: 40px;
left: 35%;
position: absolute;
top: 35%;
width: 30%;
}
</style>
Ensuring accessibility
The AutoComplete component’s accessibility levels are ensured through an accessibility-checker and axe-core software tools during automated testing.
The accessibility compliance of the AutoComplete component is shown in the following sample. Open the sample in a new window to evaluate the accessibility of the AutoComplete component with accessibility tools.