Event handler to use when deleting a row in a GridDataBoundGrid

Hi, When a row is deleted in a GridDataBoundGrid, which event handler is the most suitable use? Regards David

1 Reply

AD Administrator Syncfusion Team July 4, 2005 01:24 PM UTC

You can try either of these events. this.gridDataBoundGrid1.Binder.RecordsRemoved += new EventHandler(Binder_RecordsRemoved); this.gridDataBoundGrid1.Model.RowsRemoved += new GridRangeRemovedEventHandler(Model_RowsRemoved);

Loader.
Up arrow icon