AD
Administrator
Syncfusion Team
April 20, 2006 12:18 PM UTC
Hi Fady,
Could you try this code to set the value of the CheckBox celltype in a gridcontrol.Here is a code snippet
//Form Load
this.gridControl1[2,2].CellType = "CheckBox";
this.gridControl1[2,2].CheckBoxOptions.CheckedValue = true.ToString();
this.gridControl1[2,2].CheckBoxOptions.UncheckedValue = false.ToString();
//Button Click
this.gridControl1[2,2].CellValue = true; //For Checked the checkbox
this.gridControl1[2,2].CellValue = false; //For unChecked the checkbox
Here is a sample.
http://www.syncfusion.com/Support/user/uploads/gc123_b1d25bca.zip
Let us know if this helps
Regards,
Haneef
FS
Fady Sayegh
April 20, 2006 12:45 PM UTC
thanks Haneef it works
fady