I don't seem to be able to find the appropriate string resouce name for the RadGrid's paging ComboBox's tool tip.
What is the corresponding string resource name for this item?
Is there a list of available string resource names? Or is there a method to compute the string resouce name from the rendered RadGrid control?
I have the RadGrid within an RadAjaxPanel, along with some other controls to control which DataTable is to be displayed.
When I'm first sorting the Grid and then going to select another DataTable to display in the Grid, data binding fails with an error message telling me that the Grid cannot find the sorting column I selected for the first DataTable.
How can I reset the Grid's sorting/paging setting so it will start anew with a new DataTable assigned?
I am wondering if there is a way to remove the DocumentManager, ImageManager etc from the RadEditor so that none of the extra javascript for those features is loaded. In this particular spot I am using RadEditor it is for fairly basic formatting and none of the advanced features are necessary. I am not having any particular problem, just looking for any ways to streamline and improve performance in general.

Hi ,
I'm currently using telerik version 2013.2.717.35 (There is no possibility to upgrade the Telerik at this moment).
We are unable to navigate using keyboard in the grid(focus is already set to the radgrid).
Did the following settings:
<ClientSettings AllowKeyboardNavigation="true">
<Selecting AllowRowSelect="true"></Selecting>
<KeyboardNavigationSettings EnableKeyboardShortcuts="true" AllowSubmitOnEnter="true"
AllowActiveRowCycle="true" CollapseDetailTableKey="LeftArrow" ExpandDetailTableKey="RightArrow"></KeyboardNavigationSettings>
</ClientSettings>
Issue is replicating only in IE11
Could you please provide some workaround for the same.
Attached recording of the issue (just remove the .jpg extension so that you can able to view)
Thanks
Kesava

Hi,
I'm using Telerik version 2013.2.717.35 and trying to setup the keyboard navigation for the Radgrid.
did the following settings
<ClientSettings AllowKeyboardNavigation="true">
<Selecting AllowRowSelect="true"></Selecting>
<KeyboardNavigationSettings EnableKeyboardShortcuts="true" AllowSubmitOnEnter="true"
AllowActiveRowCycle="true" CollapseDetailTableKey="LeftArrow" ExpandDetailTableKey="RightArrow"></KeyboardNavigationSettings>
</ClientSettings>
Still I could not able to navigate with the keyboard in IE11(working fine Chrome).
While navigating we set the focus to the Grid as well.
Please let me know is there any workaround to achieve this functionality.
Note: Not possible to upgrade the Telerik at this moment.
Thanks
Kesava

| args.set_cancel(true); |
| var commandArg = args.get_commandArgument(); |
| if(commandArg == 'Next') |
| thisSession.Grid.Page += 1; |
| else if(commandArg == 'Prev') |
| thisSession.Grid.Page -= 1; |
| if(thisSession.Grid.Page == 0) thisSession.Grid.Page = 1; |
| thisSession.Grid.Page = sender.get_masterTableView().get_currentPageIndex() + 1; |
| if(args.get_commandName() == "Sort") |
| { |
| thisSession.Grid.SortExpression = sender.get_masterTableView().get_sortExpressions(); |
| var tsContent = $find('<%=tsContent.ClientID %>'); |
| if(!tsContent) return; |
| } |
| var tsContent = $find('<%=tsContent.ClientID %>'); |
| if(!tsContent) return; |
| var searchID = tsContent.get_selectedTab().get_value(); |
| //getSearch(searchID); |
| var searchText = (thisSession.Grid.SearchText == null) ? '' : thisSession.Grid.SearchText; |
| PAB3.GetSearch(searchID.substring(4),thisSession.Grid.Days, |
| thisSession.Grid.Page,thisSession.Grid.PageSize,thisSession.Grid.SortExpression, thisSession.Grid.SearchType,searchText, |
| updateGrid_Paging,function(e){alert(e.get_message());}); |
Hi,
We are using the RADGrid with the columns set to be resizable and the minimum width set to be 100% so that the table always fills the available space. Most of the time this works fine and when resizing columns by dragging the column edge follows the mouse as it should. Occasionally however, the column resizes by a huge amount when the mouse is moved only a small distance, resulting in a very jerky experience where the column gets either very wide or very thin extremely quickly. Is there any reason you know why this might be happening or a setting we should look at that can mitigate this please?
Thanks for your help in advance.
