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

WCAG 2.0 And Section 508 Accessibility Compliance

  • Home
  • Products
    • Chairs
    • Tables
    • Sofas
  • About Us
Validate with WAVE

RadNavigation is compliant with Section 508, and Level AA of the WCAG 2.0 Guidelines. Run WAVE, the automated web accessibility evaluation tool, to check the accessibility level of the control yourself.

This example demonstrates how you can make Telerik's ASP.NET RadNavigation accessible by leveraging the settings for the different caption and summary properties of the rendered HTML elements.

  • DefaultCS.aspx
  • DefaultCS.aspx.cs
<%@ Page Title="" Language="C#"  CodeFile="DefaultCS.aspx.cs" AutoEventWireup="true" Inherits="Navigation.Examples.Accessibility.DefaultCS" %>

<!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-narrow">
        <telerik:RadNavigation ID="RadNaivation1" Skin="Simple" runat="server">
            <Nodes>
                <telerik:NavigationNode Text="Home" CssClass="searchBoxWrapper">
                </telerik:NavigationNode>
                <telerik:NavigationNode Text="Products">
                    <Nodes>
                        <telerik:NavigationNode Text="Chairs"></telerik:NavigationNode>
                        <telerik:NavigationNode Text="Tables"></telerik:NavigationNode>
                        <telerik:NavigationNode Text="Sofas"></telerik:NavigationNode>
                    </Nodes>
                </telerik:NavigationNode>
                <telerik:NavigationNode ID="NavigationNode3" Text="About Us" runat="server"></telerik:NavigationNode>
            </Nodes>
        </telerik:RadNavigation>
    </div>

    <asp:LinkButton ID="LinkButton1" runat="server" OnClick="LinkButton1_Click">Validate with WAVE</asp:LinkButton>

    </form>
</body>
</html>

Support & Learning Resources

Find Assistance