Hi there,
How do I get the check to appear and an event to run when I select a box in an unbound column? I would also like to get the value of adjacent col, rows (like the Excel Offset)
Thanks,
This is an example of what I've tried:
GridModel model = this.myGrid.Model;
int ColIndex = this.myGrid.Model.NameToColIndex("Check box Column");
....
myGrid[e.RowIndex, ColIndex].CellValueType = typeof(bool);
myGrid[e.RowIndex, ColIndex].CellValue = "true";