New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

WAI-ARIA Support

The RadSwitch control has WAI-ARIA support which can be easily enabled by setting its EnableAriaSupport property to true.

The WAI-ARIA attributes are rendered with JavaScript because no HTML document can validate if they are present in the server markup. Therefore, in order to see them, you should inspect the control with the browser dev toolbar and not the page source.

  • DefaultVB.aspx
<%@ Page Language="vb"  %>

<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>

<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head runat="server">
    <title>Telerik ASP.NET Example</title>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
    <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" />
    <div class="demo-container size-thin" style="text-align: center;">
        <telerik:RadLabel runat="server" ID="RadLabel1" AssociatedControlID="RadSwitch1" Text="I agree to the Terms & Conditions.">
        </telerik:RadLabel>
        <telerik:RadSwitch ID="RadSwitch1" runat="server" AutoPostBack="false" EnableAriaSupport="true">
        </telerik:RadSwitch>
    </div>
    </form>
</body>
</html>

Support & Learning Resources

Find Assistance