hello all ,
I have a radgrid that contains a Template column with radnumericTextBox ,
Users will fill these numericTextBox, every textbox should have a value less than previous one ,
if user add 20 in first row ,
second row should contains 20 or less ...
in "checkValues" function , i want to read value of previous row to compare with current value ..
how can i get it based on row index ?
How can i achieve this task ?
I have a radgrid that contains a Template column with radnumericTextBox ,
Users will fill these numericTextBox, every textbox should have a value less than previous one ,
<telerik:GridTemplateColumn HeaderText="value" UniqueName="value"><ItemTemplate>
<telerik:RadNumericTextBox runat="server" ID="value" NumberFormat-AllowRounding="false" > <NumberFormat GroupSeparator=""/> <ClientEvents OnValueChanged="checkValues" /> </telerik:RadNumericTextBox></ItemTemplate>
</telerik:GridTemplateColumn>if user add 20 in first row ,
second row should contains 20 or less ...
in "checkValues" function , i want to read value of previous row to compare with current value ..
how can i get it based on row index ?
How can i achieve this task ?