I tried to add a new row in the UltraWinGrid using the AddButton.
If I choose another row by clicking a cell without completing current row, the data I typed already in current row got disappeared.
I wanted to validate and make sure If I completed adding my inputs before moving the cursor to any other row in the grid.
What event I can choose to do my code validation? Any help would be appreciated.
Thanks
Krish.
Typically, you would do this sort of validation in the BeforeRowUpdate event. You can check IsAddRow on the grid's ActiveRow to determine if the row is new or just an existing orw being edited.
Krish,
Would you care to share your solution?
Benjamin
Never Mind. I got this figured out.
Thanks,