or
<
telerik:GridTemplateColumn
DataField
=
"Comments"
FilterControlAltText
=
"Filter column13 column"
AllowFiltering
=
"false"
<br> HeaderText="Comments" UniqueName="Comments"><
br
> <
EditItemTemplate
><
br
> <
asp:TextBox
ID
=
"tbComments"
runat
=
"server"
TextMode
=
"MultiLine"
Text='<%# Eval("Comments") %>'>></
asp:TextBox
><
br
> <
asp:RequiredFieldValidator
ID
=
"rfvComments"
ControlToValidate
=
"tbComments"
Display
=
"Dynamic"
<br> runat="server" ErrorMessage="Please enter a reason for changing this budget item."></
asp:RequiredFieldValidator
><
br
> </
EditItemTemplate
><
br
> <
ItemTemplate
><
br
> <
asp:Label
ID
=
"CommentsLabel"
runat
=
"server"
Text='<%# Eval("Comments") %>'></
asp:Label
><
br
> </
ItemTemplate
><
br
> </
telerik:GridTemplateColumn
>
<
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?