databound grid update row event

I want to enable a save data button after a cell/row is edited and the bound dataset is updated. Do you know which event I should trap to use the ds.haschanges = true value to enable the save button?

2 Replies

AD Administrator Syncfusion Team October 24, 2006 08:19 PM UTC

Hi,

You can handle the RowSaved event of the grid which gets triggered whenever changes in the current row have been saved.
//
this.gridDataBoundGrid1.RowSaved += new GridRowEventHandler(gridDataBoundGrid1_RowSaved);
//

Thanks,
Rajagopal


PR Patrick Rumery October 25, 2006 01:32 AM UTC

Thanks

>Hi,

You can handle the RowSaved event of the grid which gets triggered whenever changes in the current row have been saved.
//
this.gridDataBoundGrid1.RowSaved += new GridRowEventHandler(gridDataBoundGrid1_RowSaved);
//

Thanks,
Rajagopal

Loader.
Up arrow icon