or

<ClientSettings AllowKeyboardNavigation="True">
<KeyboardNavigationSettings EnableKeyboardShortcuts="true" AllowActiveRowCycle="true" />
RADGrid sorts records only when the HeaderText of a column is clicked. I want to sort Grid data on click of the column header. Is there a way to do this?
<telerik:RadGrid runat="server" ID="GridName" <MasterTableView <CommandItemTemplate> <telerik:RadToolBar OnClientButtonClicking="TheFunction"....
function TheFunction(sender, args) {
var myGrid = $find("<%=GridName.ClientID%>"); // TO BE RESOLVED WITHOUT EXPLICIT REFERENCE WITH <% %>