I have an unbound column with type set to System.Boolean and style set to "Checkbox". I've wired up the ClickCellButton event - but it does not fire when I click the checkbox to change the state of the checkbox. Is there any other settings necessary to ensure that event fires? Anything I can look at to help debug this?
Thanks
Dan
This was very helpful - checking the Text property is a little unexpected, but it works!
The CheckBox is not considered a button. You need to check the CellChange event, but then check the Text property, not the Value property, or you could use the AfterCellUpdate event and the Value property but it will fire only after the user leaves the cell.