We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

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.
Live Chat Icon For mobile
Up arrow icon