TableControlCurrentCellAcceptedChanges problem

I have subscribed to the TableControlCurrentCellAcceptedChanges on my grouping grid, so that I can save my changes from the underlying datatable to my database. Unfortunately when this event is fired, and I check my database for changes, the last change is not recorded in the datatable. this is how I am checking the datatable for changes DataTable dt_changes = dt.GetChanges(); if (dt_changes == null) { Console.WriteLine("No Change"); } Is there another event? how can I do this?

1 Reply

AD Administrator Syncfusion Team June 7, 2005 12:15 PM UTC

Try the this.gridGroupingControl1.SourceListRecordChanged event.

Loader.
Up arrow icon