I have bound the ultragrid to a datasource and added an empty row at the end for entering new values (MS Access style). The datatable requires has some required fields which are enforced in underlying datatable. Now when I try to do anything after the grid is loaded error message is poped up because it tries to update datatable with the empty row added at the end.
I want to control when the ultragrid tries to update underlying datatable and allow user to reenter the missing requied values.
Instead of adding an empty row to your table, you should set AllowAddNew on the grid to TemplateOnBottom.
Try to change the update mode.