I have a Blazor Sfgrid with a search field. The issue I am having is saving the row when I'm working between searching with the following procedure.
1) Search for an item "000"
2) Double click on the row and edit it
3) Without doing anything else like pressing enter or clicking update I search for something new "001"
4) Double click on the new row and edit it
5) Clear my search, but item "000" has reverted back.

In this case my ActionBeginHandler is not going until I do my search and args.data is null when it does.
What I want to do:
1) Search for an item "000"
2) Double click on the row and edit it
3) Without doing anything else like pressing enter or clicking update I search for something new "001"
3a) Save changed items for "000" without the user needing to do anything by calling a method
4) Double click on the new row and edit it
5) Clear my search and have items "000" and "001" reflect the edits.