J.
J.Nagarajan
Syncfusion Team
August 10, 2007 10:11 PM UTC
Hi Sathish,
You can get the record of the checkboxfield and use the Record.SetValue() method to set the value for the checkbox fields. Please refer the code below.
Record rec = this.gridGroupingControl1.Table.CurrentRecord;
if (rec != null)
{
bool val = (bool)rec.GetValue("Check");
rec.SetValue("CheckColumn", !val);
}
Please let me know if you have any questions.
Regards,
Nagaraj