I have an editable grid, with n columns that don't allow null (property Nullable = Disallow).How can I control not be allowed to change rows until all columns have value?Thanks
Hello,
I am checking about the progress of this issue. Please let me know If you need any further assistance on this.
Hi,
What I would do is use the BeforeRowUpdate event. You can examine the values of each cell in the row and if any of them are null, set e.Cancel to true.
You may also want to set the RowUpdateCancelAction property on the grid to determine what happens when you cancel.