The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
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?