AD
Administrator
Syncfusion Team
April 19, 2006 01:27 PM UTC
Hi John,
By Default,The databound grid will push all data for a row into the underlying datasource for every record once you move the current cell of that record. Once the changes for a record have been pushed into the datasource the grid has no more knowledge about these changes and thus cannot reverse and undo these changes.It does not push all data for a row into the underlying datasource for every cell movement.If you want to push all data to undelying datasource for every cell movement,you need to call in Binder.EndEdit Method(before calling this , you need to call the CurrentCell''s Edit method),Here is a code snippet.
this.gridDataBoundGrid1.CurrentCell.EndEdit();
this.gridDataBoundGrid1.Binder.EndEdit();
For more details,See
http://www.syncfusion.com/Support/user/uploads/DataBoundGrid_239d47b2.zip
Please let me know if you need any further assistance.
Regards,
Haneef