I know there is another question here asking about CRUD for gantt chart. https://www.syncfusion.com/forums/153238/sample-for-crud
My question is a bit different, I would like to handle the CRUD like this:
public async void ActionComplete(ActionEventArgs<Order> args)
if (Args.RequestType == Syncfusion.Blazor.Gantt.Action.Delete)
{
// You can handle the delete
Service.DeletedRec(DeletedRecords[0]);
}
}
The problem is, how are ChangedRecords, DeletedRecords, AddedRecords called in Gantt Chart? I need them because to do CRUD, I have to call the functions in a .cs file, and pass the record to be modified to the functions. For example, the DeletedRec above is going to delete DeletedRecords[0] from the server.