Which ultragrid event catches, checking or unchecking of a checkbox?
I am not looking for AfterCellUpdate as this has to be applicable
only for checkbox and not for other cells.
I typically use CellChange. It's better than AfterCellUpdate because it fires immediately when the user checks or unchecks, it doesn't wait until the leave the cell.
The only trick it, you have to use the Text property of the cell instead of the Value, because the Value won't be updated, yet.
There's no event that fires exclusively for checkbox cells. But you can check the cell.Column.Key or even cell.Column.DataType and ignore other columns very easily.
Dear Mike,
I am binding grid to a datasource which is having a bool column. This column appears as a checkbox column in the grid.
But i am unable to check or uncheck on the checkbox.
Can you please tell what property we need to set so that user should be able to check or uncheck the checkboxes in the column.
Regards,
Nipun Anand