New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.
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