sorting is not working within a radajaxpanel. My grid is below. Is there anything I've missed?
thanks.
<
telerik:RadAjaxLoadingPanel
ID
=
"RadAjaxLoadingPanel1"
runat
=
"server"
/>
<
telerik:RadAjaxPanel
ID
=
"RadAjaxPanel1"
runat
=
"server"
LoadingPanelID
=
"RadAjaxLoadingPanel1"
>
<
telerik:RadGrid
ID
=
"grdTrainingInstitutes"
runat
=
"server"
AllowSorting
=
"true"
AllowPaging
=
"true"
AutoGenerateColumns
=
"false"
PageSize
=
"20"
RegisterWithScriptManager
=
"true"
OnNeedDataSource
=
"grdResults_NeedDataSource"
TabIndex
=
"301"
>
<
MasterTableView
>
<
Columns
>
<
telerik:GridBoundColumn
DataField
=
"train_inst_id"
UniqueName
=
"TrainingInstituteID"
HeaderText
=
"ID"
HeaderStyle-Width
=
"25"
ItemStyle-Wrap
=
"false"
HeaderStyle-Wrap
=
"false"
HeaderStyle-Font-Bold
=
"true"
HeaderStyle-VerticalAlign
=
"Top"
></
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
SortExpression
=
"train_inst_nam"
HeaderText
=
"Name"
DataField
=
"train_inst_nam"
HeaderStyle-Wrap
=
"false"
HeaderStyle-Font-Bold
=
"true"
HeaderStyle-VerticalAlign
=
"Top"
HeaderStyle-Width
=
"100px"
ItemStyle-Wrap
=
"false"
></
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
SortExpression
=
"address_line"
HeaderText
=
"Address"
DataField
=
"address_line"
HeaderStyle-Wrap
=
"false"
HeaderStyle-Font-Bold
=
"true"
HeaderStyle-VerticalAlign
=
"Top"
HeaderStyle-Width
=
"150px"
ItemStyle-Wrap
=
"false"
></
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
SortExpression
=
"geographic_area"
HeaderText
=
"Geographic Location"
DataField
=
"geographic_area"
HeaderStyle-Wrap
=
"false"
HeaderStyle-Font-Bold
=
"true"
HeaderStyle-VerticalAlign
=
"Top"
HeaderStyle-Width
=
"60px"
ItemStyle-Wrap
=
"false"
></
telerik:GridBoundColumn
>
</
Columns
>
</
MasterTableView
>
<
ClientSettings
AllowKeyboardNavigation
=
"true"
AllowDragToGroup
=
"False"
AllowColumnsReorder
=
"False"
>
<
Selecting
AllowRowSelect
=
"true"
UseClientSelectColumnOnly
=
"true"
/>
<
KeyboardNavigationSettings
AllowSubmitOnEnter
=
"false"
AllowActiveRowCycle
=
"true"
EnableKeyboardShortcuts
=
"false"
FocusKey
=
"Y"
/>
<
ClientEvents
OnRowClick
=
"RowSelected"
OnRowDblClick
=
"GridDblClick"
OnKeyPress
=
"GridKeyPress"
OnGridCreated
=
"GridCreated"
/>
<
Resizing
AllowColumnResize
=
"True"
/>
</
ClientSettings
>
<
PagerStyle
Mode
=
"NextPrevAndNumeric"
/>
</
telerik:RadGrid
>
</
telerik:RadAjaxPanel
>
thanks.