I have a RadListView similar to
<
telerik:RadListView
ID
=
"RadListView1"
runat
=
"server"
>
<
ItemTemplate
>
<
asp:HiddenField
ID
=
"HiddenField1"
runat
=
"server"
Value='<%#Eval("HiddenValue") %>' />
<
telerik:RadNumericTextBox
ID
=
"RadTextBox1"
runat
=
"server"
ClientEvents-OnValueChanged
=
"onValueChanged"
DbValue='<%#Eval("Hours") %>' />
</
ItemTemplate
>
</
telerik:RadListView
>
This data is bound server-side from another control. There may be hundreds of lines with unique values. When the text is changed in the RadNumericTextBox I wish to manipulate the data using the value in HiddenField1 in the onValueChanged function.
For example, when typing "5" into the RadTextBox1, onValueChanged will fire, and I would like to discover the value of HiddenField1 in this function. I cannot seem to pin down how to access data in the specific row that I am accessing.