Accessibility in EJ2 TypeScript Calendar control
24 Jan 20248 minutes to read
The Calendar 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 Calendar component is outlined below.
WAI-ARIA attributes
The web accessibility makes web content and web applications more accessible for disabled people. It especially helps in dynamic content change and development of advanced user interface controls with AJAX, HTML, JavaScript, and related technologies.
Calendar provides built-in compliance with WAI-ARIA specifications. WAI-ARIA support is achieved through attributes like aria-label
, aria-selected
, aria-disabled
, and aria-activedescendant
applied for navigation buttons, disable and active day cells.
It helps disabled persons by providing the information about the widget for assistive technology in the screen readers. Calendar component contains grid role and grid cell for each day cell.
-
Aria-label: This attribute provides text labels for an object for the previous and next month’s elements. It helps the screen reader object to read.
-
Aria-selected: Indicates the currently selected date of the Calendar component.
-
Aria-disabled: Indicates the disabled state of the Calendar component.
-
Aria-activedescendent: Helps in managing the current active child of the Calendar component.
-
Role: Gives information to assistive technologies about how to handle each element in a widget.
-
Grid-cell: Defines the individual cell that can be focused and selected.
Keyboard interaction
You can use the following keys to interact with the Calendar. This component implements keyboard navigation support by following the WAI-ARIA practices.
It supports the following list of shortcut keys:
Press | To do this |
---|---|
Upper Arrow | Focuses the same day of the previous week. |
Down Arrow | Focuses the same day of the next week. |
Left Arrow | Focuses the day before. |
Right Arrow | Focuses the next day. |
Home | Focuses the first day of the month. |
End | Focuses the last day of the month. |
Page Up | Focuses the same date of the previous month. |
Page Down | Focuses the same date of the next month. |
Enter | Selects the currently focused date. |
Shift + Page Up | Focuses the same date for the previous year. |
Shift + Page Down | Focuses the same date for the next year. |
Control + Upper Arrow | Moves to the inner level of view like month to year and year to decade. |
Control + Down Arrow | Moves out from the depth level view like decade to year and year to month. |
Control + Home | Focuses the first date of the current year. |
Control + End | Focuses the last date of the current year. |
To focus the Calendar component, use
alt+t
keys.
import { Calendar } from '@syncfusion/ej2-calendars';
// creates a Calendar component.
let calendarObj: Calendar = new Calendar();
calendarObj.appendTo('#element');
document.onkeyup = function (e) {
if (e.altKey && e.keyCode === 84) {
// press alt+t to focus the control.
(<HTMLElement>calendarObj.element.querySelectorAll('.e-content table')[0]).focus();
}
};
<!DOCTYPE html>
<html lang="en">
<head>
<title>Essential JS 2 Calendar control</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Typescript UI Controls" />
<meta name="author" content="Syncfusion" />
<!--style reference from the Calendar component-->
<link href="https://cdn.syncfusion.com/ej2/27.2.2/ej2-base/styles/material.css" rel="stylesheet" />
<link href="https://cdn.syncfusion.com/ej2/27.2.2/ej2-buttons/styles/material.css" rel="stylesheet" />
<link href="https://cdn.syncfusion.com/ej2/27.2.2/ej2-calendars/styles/material.css" rel="stylesheet" />
<!--style reference from app-->
<link href="styles.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
<script src="systemjs.config.js"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id='loader'>LOADING....</div>
<div id='container'>
<!--element which is going to render the Calendar-->
<div id='element'></div>
</div>
</body>
</html>
Ensuring accessibility
The Calendar component’s accessibility levels are ensured through an accessibility-checker and axe-core software tools during automated testing.
The accessibility compliance of the Calendar component is shown in the following sample. Open the sample in a new window to evaluate the accessibility of the Calendar component with accessibility tools.