AD
Administrator
Syncfusion Team
July 26, 2005 12:48 PM UTC
In a GridDataBoundGrid, the grid caches changes until you leave the row. This is by design. If you want to force the changes to be saved to your datasource before this, then you can try calling:
grid.CurrentCell.EndEdit();
grid.Binder.EndEdit();
CS
Cesare Stefani
August 1, 2005 02:50 PM UTC
thak u Clay, I''ve solved the problem