Hi!
I have a checkbox inside a templatecolumn
Now, in the UpdateCommand of the Grid, I would like to access the CheckBox from the ItemTemplate. This is because when you go into Edit Mode, the column for the CheckBox is still visible and clickable. So I woul like to check if the user has changed this value.
Id this is not posible, is it possible to lock the checkbox for the ItemTemplate when in edit mode?
I have a checkbox inside a templatecolumn
<telerik:GridTemplateColumn> <HeaderTemplate> <input onclick="CheckAll(this);" type="checkbox"> </HeaderTemplate> <ItemTemplate> <asp:CheckBox ID="cbApproved" runat="server" /> </ItemTemplate></telerik:GridTemplateColumn> Now, in the UpdateCommand of the Grid, I would like to access the CheckBox from the ItemTemplate. This is because when you go into Edit Mode, the column for the CheckBox is still visible and clickable. So I woul like to check if the user has changed this value.
Id this is not posible, is it possible to lock the checkbox for the ItemTemplate when in edit mode?