Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
475
Ultragrid event that checking or unchecking of a checkbox?
posted

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.

Parents
No Data
Reply
  • 469350
    Suggested Answer
    Offline posted

    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.

Children