- WAI-ARIA attributes
- Keyboard interaction
- Ensuring accessibility
- See also
- HtmlAttributes
- AriaLabels
Contact Support
Accessibility in ASP.NET MVC OTP Input control
6 Dec 20244 minutes to read
The OTP Input control 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 OTP Input control is outlined below.



WAI-ARIA attributes
The following ARIA attributes are used in the OTP Input control:
Attributes | Purpose |
---|---|
role=group |
Attributes used to form a collection of items. |
aria-label |
Attributes provides the text label for the Otp inputs. |
Keyboard interaction
The following keyboard shortcuts are supported by the OTP Input control.
Press | To do this |
---|---|
Left Arrow | Focuses the previous input in the OTP. |
Right Arrow | Focuses the next input in OTP |
Tab | Moves the initial focus and shifts focus to the next input of the OTP. |
Shift + Tab | Moves the focus to the previous input of the OTP. |
Ensuring accessibility
The OTP Input control’s accessibility levels are ensured through an accessibility-checker and axe-core software tools during automated testing.
See also
HtmlAttributes
HtmlAttributes allow you to specify additional HTML attributes to be applied to the OTP input control.
You can pass HTML attributes as key-value pairs to the HtmlAttributes property.
@using Syncfusion.EJ2.Inputs
<div id='container' style="width: 350px;">
@Html.EJS().OtpInput("otpInput").HtmlAttributes(ViewBag.htmlAttributes).Render()
</div>
public ActionResult Htmlattributes()
{
Dictionary<string, object> htmlAttributes = new Dictionary<string, object>()
{
{ "title", "One-Time Password" }
};
ViewBag.htmlAttributes = htmlAttributes;
return View();
}
AriaLabels
AriaLabels define the ARIA-label attribute for each input field in the OTP input control. ARIA-labels enhance accessibility by providing descriptive labels for screen reader users, improving the user experience for individuals with disabilities.
You can provide an array of strings as ARIA-labels to the AriaLabels property. Each string corresponds to the ARIA-label attribute for the respective input field in the OTP input control.
@using Syncfusion.EJ2.Inputs
<div id='container' style="width: 350px;">
@Html.EJS().OtpInput("otpInput").AriaLabels(ViewBag.ariaLabels).Render()
</div>
public ActionResult Arialabels()
{
string[] ariaLabels = {"First digit", "Second digit", "Third digit", "Fourth digit"};
ViewBag.ariaLabels = ariaLabels;
return View();
}