
I understand that RadGrid is 508 compliant.
However I noticed that some of the links on your website are not working.
http://www.telerik.com/help/aspnet-ajax/grdkeyfeatures.html (Search for 508 and click on the link)
Can you please point me to the proper links for 508 compliance ?
Regards,
Kaushik
5 Answers, 1 is accepted
You can refer to the following online resources on this subject:
http://demos.telerik.com/aspnet-ajax/grid/examples/generalfeatures/accessibility/defaultcs.aspx
http://www.telerik.com/help/aspnet-ajax/grid-section-508-compliance.html
Best regards,
Sebastian
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.

Sebastian,
Thank you for the quick reply.
Based on the sample demo below I added the pager template with asp Buttons for enabling the paging and sorting features
After implementing the change when i click on the Next button I am not able to view any data. Please advise
I have attached the screenshots for your perusal.
Below is my code
<
telerik:RadGrid ID="rg" runat="server" AutoGenerateColumns="False"
Width="659px" AllowPaging="True" Height="62px">
<ItemStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"
Font-Underline="False" Wrap="True" />
<MasterTableView BorderStyle="Solid" GridLines="None">
<PagerTemplate>
Change page:
<asp:Button ID="Button1" ToolTip="Previous Page" CommandName="Page" CommandArgument="Prev"
CssClass="rgPagePrev" runat="server" />
<asp:Button ID="Button2" ToolTip="Next Page" CommandName="Page" CommandArgument="Next"
CssClass="rgPageNext" runat="server" />
</PagerTemplate>
<Columns>
<telerik:GridTemplateColumn HeaderText="User Name" UniqueName="UserName">
<ItemTemplate>
<%
#Eval("FirstName")%>
<%
#Eval("LastName")%>
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridBoundColumn DataField="Date" HeaderText="Date/Time" UniqueName="DateTime">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Test" HeaderText="Test"
UniqueName="Test">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Comments" HeaderText="Comments" UniqueName="Comments">
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
<HeaderStyle BorderStyle="Solid" Font-Bold="True" HorizontalAlign="Center" />
</telerik:RadGrid>
PS: Can you please provide additional info on the Css Classes "rgPagePrev" and "rgPageNext"
Please advise.
Regards,
Kaushik
Most probably the grid is not bound on subsequent post-back. How the grid is bound in your case? You may need to use NeedDataSource or DataSourceID instead simple DataBind().
Best wishes,
Vlad
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.

But when i am using manual checkbox in grid and checkbox has Text property Then it does not show. But I want "GridClientSelectColumn" for selectAll. Please suggest for CheckBox UI Accessiblity according 508 Compliance.
Thanks.
I have already addressed the other forum thread you have opened on the same topic.
Greetings,
Martin
the Telerik team