or
<telerik:GridCheckBoxColumn DataField="IsActive"
HeaderText="IsActive"
SortExpression="IsActive" UniqueName="chkIsActive">
</telerik:GridCheckBoxColumn>
In edit mode the check box is in edit mode , but getting the value from the particular checkboxcolumn is the problem.. Please help me to retreive the value from the checkbox on clicking update after editing. Thanks in advance..
CheckBox
chkIsActive = (CheckBox)item.FindControl("chkIsActive");
if
(chkIsActive != null)
{
if (chkIsActive.Checked)
isActive =
"1";
else
isActive =
"0";
}
please help me with a code