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?