AD
Administrator
Syncfusion Team
May 14, 2004 08:35 PM UTC
You have to leave the row before the changes are moved to the datasource. As long as you are changing the cells in the same row, the changes are cached locally.
If you want to force the changes to be saved to the datasource as you leave each cell, try handling the CurrentCellMoved event. In the handler if grid.CurrentCell.MoveToRowIndex is equal to grid.CurrentCell.MoveFromRowIndex, then you can try calling grid.Binder.EndEdit().