Hi,
Thanks for using Syncfusion products.
In the CheckedChange event you can access the current GridRow using the following code snippet:
protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
{
CheckBox checkbox = (CheckBox)sender;
GridRow gridrow = (GridRow)checkbox.Parent.Parent.Parent;
int i = Convert.ToInt32(gridrow.Record.GetValue("id"));
}
From the current GridRow you can access the Record values. And also the sender object contains the checkbox, from that you can get the checked state.
Please refer the sample from the belwo link, which illustartes this:
http://www.syncfusion.com/support/user/uploads/CheckBox_ff76096b.zipPlease have a look at the above and let us know if this helps you out.
Regards,
Raji