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

    WCAG 2.0 and Section 508 Accessibility Compliance

    Accessible UI
    • Collapse
    • Close

    RadDock for ASP.NET AJAX has an accessible UI.
    Its interface is level A accessible (in compliance with the W3C Web Accessibility Guidelines 2.0) as well as Section 508 compliant.

    Validate with WAVE

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

    • DefaultCS.aspx
    • DefaultCS.aspx.cs
    • styles.css
    <%@ Page Language="c#" AutoEventWireup="true" Inherits="Telerik.Web.Examples.Dock.Accessibility.DefaultCS"CodeFile="DefaultCS.aspx.cs"  %>
     
    <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
    <!DOCTYPE html>
    <head runat="server">
        <title>Telerik ASP.NET Example</title>
        <link href="styles.css" rel="stylesheet" />
    </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">
            <telerik:RadDockZone runat="server" ID="RadDockZone1" MinHeight="200" Width="300"
                Orientation="Horizontal">
                <telerik:RadDock RenderMode="Lightweight" runat="server" ID="RadDock1" Height="200" Title="Accessible UI"
                    EnableRoundedCorners="true" CssClass="higherZIndex">
                    <ContentTemplate>
                        <p>
                            RadDock for ASP.NET AJAX has an accessible UI.<br />
                            Its interface is level A accessible (in compliance with the W3C Web Accessibility
                        Guidelines 2.0) as well as Section 508 compliant.
                        </p>
                    </ContentTemplate>
                </telerik:RadDock>
            </telerik:RadDockZone>
        </div>
        <asp:LinkButton ID="LinkButton1" runat="server" OnClick="LinkButton1_Click">Validate with WAVE</asp:LinkButton>
        </form>
    </body>
    </html>

    Support & Learning Resources

    Find Assistance