GridDataBoundGrid datasource rowstate =''Unchanged'' after modify a cell in that row

When the user updates a cell in a GridDataBoundGrid, the "rowstate" of the datasource in the same row dose not change until the user leave
that row and click on another row .

why the rowstate of a datasource in a GDBG dose not change it''s rowstate to be ''Modified'' ?


1 Reply

AD Administrator Syncfusion Team July 31, 2006 05:35 AM UTC

Hi Anat,

This is by design. The changes in a row are buffered until the user leaves the row.

If you want to force the changes to the datasource at some point, then you can make these calls:

this.gridDataBoundGrid1.CurrentCell.EndEdit();
this.gridDataBoundGrid1.Binder.EndEdit();

Let me know if this does not work for you.
Regards,
Haneef

Loader.
Up arrow icon