Hi,
Using the RadGrid in Batch Editing mode and the EditType is set to row.
aspx:
<
telerik:GridTemplateColumn
UniqueName
=
"2_1"
DataType
=
"System.Int32"
DataField
=
"2_1"
AllowSorting
=
"false"
>
<
ItemTemplate
>
<
asp:Label
runat
=
"server"
ID
=
"lbl2_1"
Text='<%# Eval("2_1") %>'></
asp:Label
>
<
asp:Label
runat
=
"server"
ID
=
"lblDay2_1"
ClientIDMode
=
"Static"
></
asp:Label
>
</
ItemTemplate
>
<
EditItemTemplate
>
<
span
>
<
telerik:RadNumericTextBox
runat
=
"server"
ID
=
"tb2_1"
Text='<%# Bind("2_1") %>' Type="Number" MinValue="0" MaxValue="999">
<
NumberFormat
DecimalDigits
=
"0"
/>
</
telerik:RadNumericTextBox
>
</
span
>
</
EditItemTemplate
>
</
telerik:GridTemplateColumn
>
I want to access the label ""lblDay2_1" client-side to change the text when the user edit the RadNumericTextBox
I think the best way is to use the event "CellValueChanged" but I am not be able to access the Label "lblDay2_1" to change the text.
How can I do that?
Thanks in advance.