Hi,
CheckBoxColumn is mostly for editing. If you wish to display only, you can use a StaticColumn but set the columns' DataFormat to something like this:
Code: HTML/ASPX
<input type="checkbox" {0} disabled="disabled"/>
You would then do something like this in your SQL:
Code: SQL
SELECT IIF(checked, 'checked="checked"', '') AS checked_attr ....
The code assumes that you have a boolean (bit) field "checked" in your database. It creates a new field "checked_attr" in the result set with the value as either
checked="checked" or blank. You can then set the StaticColumn's DataField to "checked_attr". At runtime the Grid would format this value with DataFormat and take the final output as grid cell content.
You can also use the same technique to display images in your cell.
Thanks!