HA
haneefm
Syncfusion Team
July 13, 2007 09:53 PM UTC
Hi Daniel,
By Default,The GroupingGrid 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 commit all data to undelying datasource for every cell movement(button's click),you can call in Table.EndEdit Method(before calling this , you need to call the Table.TableDirty property to true). Below are the code snippet.
this.Grid.Table.EndEdit();
this.Grid.Table.TAbleDirty =true;
Best regards,
Haneef
DE
DuplicateDanny Evans
July 16, 2007 02:10 PM UTC
Thank you Haneef. calling Table.Endedit; Table.TableDirty = true; during the tablecontrolcurrentcellchanged event for certain column allowed me to control the grid to give the required results.