i have grid
<
telerik:GridTemplateColumn
DataField
=
"Mark"
DataType
=
"System.Int16"
FilterControlAltText
=
"Filter Mark column"
HeaderText
=
"Mark"
SortExpression
=
"Mark"
UniqueName
=
"Mark"
>
<
ItemTemplate
>
<
asp:TextBox
ID
=
"txtMark"
runat
=
"server"
Text='<%# Bind("Mark") %>' Width="50px" AutoPostBack="True" Font-Names="Arial" Font-Size="Small"></
asp:TextBox
>
</
ItemTemplate
>
<
HeaderStyle
Font-Names
=
"Arial"
Font-Size
=
"Small"
/>
<
ItemStyle
Font-Names
=
"Arial"
Font-Size
=
"Small"
/>
</
telerik:GridTemplateColumn
>
and a Radtextbox outside the grid
i would like to compare the value from the ItemTeplate to the one in the RadTextbox and if the itemplate value is greater than the RadTextbox throw a msg.
Can anyone help?