Hi Brian,
Thanks for contacting Syncfusion support.
Since the “OnActionComplete” event RequestType will be same (Save) for both add and update , the “action” property has been added to differentiate them. But in case of delete there is no need for differentiation the action property. So we suggest you to use the “RequestType” property to achieve your requirement.
|
public async void ActionComplete(ActionEventArgs<Order> args)
if (Args.RequestType == Syncfusion.Blazor.Grids.Action.Delete)
{
// You can handle the delete
}
} |
Please get back to us if you need further assistance on this.
Regards,
Pavithra S