Hi,
There is no equivalent of ItemDataBound for EO Grid. However you can set the Grid cell value directly (you can not control the controls in the Grid cell directly like you do with ASP.NET DataGrid) using something like this:
Code: C#
//Make sure you call this AFTER you call DataBind
Grid1.Items[0].Cells[0].Value = "1";
I believe for a CheckBoxColumn, setting the cell value to "1" or true would check the checkbox.
Enable/Disable the checkbox is a totally different matter. It can be done with custom column but there is no easy way for you to do with the CheckBoxColumn. You can easily show/hide the checkbox with child CSS style selector though:
http://www.essentialobjects.com/forum/postst3177_Grid-checkbox-column-I-need-to-disable-checkbox-on-one-cell.aspxUnfortunately the above trick does not work with enable/disable because CSS is presentational. It changes appearance but not behavior. So it can not be used to change whether the checkbox is clickable.
Thanks