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
465
Is there a RowUpdateCancelAction equivalent for Cell Updates?
posted

I would like to retain editing the cell if the value enter to the cell is not a valid value.  I tried doing validation in BeforeCellUpdate, and if the validation fails, it sets the e.Cancel = true, but all it does is revert the value back to the original value, but still allows me to go into another cell for edit.

Parents
No Data
Reply
  • 37774
    Verified Answer
    posted

     It sounds like the BeforeExitEditMode would be the perfect candidate for what you are trying to do, since if you don't consider the value valid, cancelling the event will prevent the user from exiting edit mode, and thus the cell.

    -Matt 

Children