AD
Administrator
Syncfusion Team
April 6, 2004 09:24 PM UTC
Normally, the grid auto-senses a boolean datacolumn datatype, and sets the CellType = "CheckBox".
I am not sure why it is not doing this in this case? Are you explicitly adding GridBoundColumns for the grid that does not show the checkbox? If so, you should set the grid.GridBoundColumns["myColumn"].StyleInfo.CellType = "CheckBox"; for that column (and also set GridBoundColumn.StyleInfo.CellValueType = typeof(bool);
If you are not adding GridBoundColumns, then set these properties on the grid.Binder.InternalColumns instead of grid.GridBoundColumns.