Hello team.
Cancel Row editing / Adding via ESC key down works with normal mode. Is there is a way to get it it work with Batch mode..
Or How will I fire the cancel in toolbar using Escape?
Best Regards,
Tyrone
I already solved it.
public async void KeyDownHandlerItemCode(KeyboardEventArgs args)
{
if (args.Key == "Escape")
{
//await GridDetail.AddRecordAsync();
await GridDetail.CloseEditAsync();
}
}
Hi Rahul.
await GridDetail.CloseEditAsync(); cancels all the edited or new rows..
Is there is the way to cancel the selected row only?
Best Regards,
Tyrone
Thanks for the info Rahul.
Best Regards,
Tyropne