Hi, Kevit
Greetings from Syncfusion support,
We suggest you use the below solution to overcome the reported issue. We have
customized the data from the parameter so that we can get the customized data arguments. Please refer to the attached code snippet and sample for your
reference.
public override async Task<object> InsertAsync(DataManager
dataManager, object data, string
key)
{
Order
values = data as Order;
values.OrderID = 123;
values.Freight = 123;
Orders.Add(data as Order);
return data;
}
|
Regards,
Prathap S
Attachment:
BlazorDataGrid_551e8688.zip