I can't be the first one to try this. I am using a Grid with inline editing. I use a save handler:
(save)="saveHandler($event)"
The saveHandler transmits the change to the server, but then the server throws an exception. How do I "undo" those changes locally since the grid has already saved by the time the saveHandler is ran (i.e. the Save/Cancel buttons are no longer even visible)?
(save)="saveHandler($event)"
The saveHandler transmits the change to the server, but then the server throws an exception. How do I "undo" those changes locally since the grid has already saved by the time the saveHandler is ran (i.e. the Save/Cancel buttons are no longer even visible)?