I have standard asp textbox as template column in radgrid and I change value of that text box through client side. This textbox is disabled but I can see value getting updated in textbox on grid. When I click save and loop through data items of grid, value for that textbox is empty.
<Columns>Is there any other alternative to this? I need to save this value for each row in grid.
<telerik:GridTemplateColumn HeaderText="Amount" UniqueName="Amount"> <ItemTemplate> <asp:textbox ID="txtamount" runat="server" enabled="false" > </asp:textbox> </ItemTemplate> </telerik:GridTemplateColumn> </Columns>