BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
gridAlarmDetails.Model.ColStyles[ColName].CellType = "CheckBox";
gridAlarmDetails.Model.ColStyles[ColName].CellValueType = typeof(bool);
gridAlarmDetails.Model.ColStyles[ColName].CellValue = false;
Instead of this try setting the properties by accessing the styleinfo properties through binder and set the checkboxoptions property to see if that helps.
gridAlarmDetails.Binder.InternalColumns[Index].CheckBoxOptions = new Syncfusion.Windows.Forms.Grid.GridCheckBoxCellInfo(true.ToString(), false.ToString(), "", true);
Also what version of the grid are you using?
Regards,
Jay N
>gridAlarmDetails.Model.ColStyles[ColName].CellType = "CheckBox";
>gridAlarmDetails.Model.ColStyles[ColName].CellValueType = typeof(bool);
>gridAlarmDetails.Model.ColStyles[ColName].CellValue = false;
>
>
>Instead of this try setting the properties by accessing the styleinfo properties through binder and set the checkboxoptions property to see if that helps.
>
>gridAlarmDetails.Binder.InternalColumns[Index].CheckBoxOptions = new Syncfusion.Windows.Forms.Grid.GridCheckBoxCellInfo(true.ToString(), false.ToString(), "", true);
>
>
>Also what version of the grid are you using?
>
>Regards,
>Jay N