Accessibility Features Overview
| Accessibility Requirement | Support Level |
|---|---|
| Right-to-Left Support | |
| Keyboard Navigation Support | |
| Screen Reader Support | |
| Contrast Color Theme | |
| Mobile Device Support | |
| Lighthouse Accessibility Validation | |
| Axe Accessibility Validation | |
| WAVE Accessibility Validation | |
| Section 508 Support | |
| WCAG 2.x Support |
- - All component features meet the requirement
- - Some component features may not meet the requirement
- - Accessibility requirement is not supported
Accessibility Standards Compliance
The Stepper component meets a variety of Section 508 and WCAG 2.x compliance standards. Known exceptions:
| Section 508 criteria | WCAG 2.x criteria | Exception description |
|---|---|---|
| 501 (Web)(Software) 504.2 (Authoring Tool) 602.3 (Support Docs) |
1.4.3 Contrast (Minimum) (Level AA) 1.4.11 Non-text Contrast (Level AA 2.1 and 2.2) |
Stepper does not support Windows High Contrast themes. |
The component also complies with the European Accessibility Act (EAA) and Americans with Disabilities Act (ADA) directives.
Keyboard Navigation
A user can use the following keys to interact with the Stepper component:
| Key | Action |
|---|---|
| Arrow Keys PageUp, PageDown |
Moves focus between steps. Focused steps are automatically selected if selectOnFocus is true. |
| Home, End | Moves focus to the first step and last step when linear is set to false. When linear is set to true, acts like the arrow keys. |
| Enter or Space | Selects a step if selectOnFocus is set to false. |
Use the registerKeyHandler(key, handler) method to implement a custom handler for a key.
jQuery
const stepper = $('#stepperContainer').dxStepper('instance');
stepper.registerKeyHandler('backspace', function(e) {
// The argument 'e' contains information about the event
});
stepper.registerKeyHandler('space', function(e) {
// ...
});Angular
import { ViewChild, AfterViewInit } from '@angular/core';
import { DxStepperComponent } from 'devextreme-angular/ui/stepper';
@Component({
imports: [DxStepperComponent],
// ...
})
export class AppComponent implements AfterViewInit {
@ViewChild(DxStepperComponent, { static: false }) stepper!: DxStepperComponent;
// Prior to Angular 8
// @ViewChild(DxStepperComponent) stepper: DxStepperComponent;
ngAfterViewInit () {
this.stepper.instance.registerKeyHandler('backspace', function(e) {
// The argument "e" contains information about the event
});
this.stepper.instance.registerKeyHandler('space', function(e) {
// ...
});
}
}Vue
<template>
<DxStepper ref="stepperRef" />
</template>
<script setup lang="ts">
import { onMounted, ref } from 'vue';
import { DxStepper } from 'devextreme-vue/stepper';
const stepperRef = ref<DxStepper | null>(null);
onMounted(() => {
stepperRef.value.instance.registerKeyHandler('backspace', function(e) {
// The argument "e" contains information about the event
});
stepperRef.value.instance.registerKeyHandler('space', function(e) {
// ...
});
})
</script>React
import React, { useRef, useEffect } from 'react';
import { Stepper, type StepperRef } from 'devextreme-react/stepper';
function App() {
const stepperRef = useRef<StepperRef>(null);
useEffect(() => {
const stepper = stepperRef.current.instance();
stepper.registerKeyHandler('backspace', function(e) {
// The argument "e" contains information about the event
});
stepper.registerKeyHandler('space', function(e) {
// ...
});
}, []);
return (
<Stepper ref={stepperRef} />
);
}Screen Reader Support
The Stepper component supports screen readers and complies to WAI-ARIA standards.
Use elementAttr to specify the aria-label:
jQuery
$('#customStepper').dxStepper({
// ...
elementAttr: { 'aria-labelledby': 'label-customStepper' },
});<div id="label-customStepper">Custom Stepper</div> <div id="customStepper"></div>
Angular
<div id="label-customStepper">Custom Stepper</div>
<dx-stepper ...
[elementAttr]="{ 'aria-labelledby': 'label-customStepper' }"
>
</dx-stepper>Vue
<template>
<div id="label-customStepper">Custom Stepper</div>
<DxStepper ...
:element-attr="{ 'aria-labelledby': 'label-customStepper' }"
/>
</template>React
export default function App() {
return (
<>
<div id="label-customStepper">Custom Stepper</div>
<Stepper ...
elementAttr={{ 'aria-labelledby': 'label-customStepper' }}
/>
</>
);
}