AD
Administrator
Syncfusion Team
March 1, 2007 05:29 PM UTC
Hi,
You can push all data to underlying 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) in the CurrentCellMoving event. Here is a code snippet.
//CurrentCellMoving event.
this.grid.CurrentCell.EndEdit(); //saves the currentcell
this.grid.Binder.EndEdit(); //removes the pencil
Regards,
Haneef