Will changing the cell value on a gridgroupingcontrol element affects the database?

Hi.. I wish to know whether if i change the value of a cell in a gridgroupingcontrol, will it update the database automatically with the newly entered data?? Thanks..

1 Reply

AD Administrator Syncfusion Team October 6, 2004 06:05 AM UTC

It will update the datasource. But if your datasource is a ADO.NET dataset/datatable, updating the datatable does not actually update the database until you call dataAdapter.Update to flush the locally cached datatable changes back to the database. ADO.NET uses a disconnected model, meaning changes are cached locally until you make the call to send them to the database.

Loader.
Up arrow icon