AD
Administrator
Syncfusion Team
November 30, 2004 04:29 PM UTC
To move changes from the local (disconnected) ADO.NET dataset, to the database, you normally call your dataAdapter.Update method.
LF
Liliana Faerman
November 30, 2004 06:01 PM UTC
>To move changes from the local (disconnected) ADO.NET dataset, to the database, you normally call your dataAdapter.Update method.
AD
Administrator
Syncfusion Team
November 30, 2004 06:08 PM UTC
I may have misunderstood your question.
The grid should undate the Dataset (not the database) when you move off an row that has been editied.
If you want the DateSet updated everytime you leave an edited cell (whether or not you leave the row), you can handle the CurrentCellAcceptedChanges event. In your handler, call grid.Binder.EndEdit().
LF
Liliana Faerman
November 30, 2004 09:20 PM UTC
Thanks Clay.
Regards!!!