I have a store in which the user could delete multiple records with a single destroy
operation.
Now, a few of these records are locked in the database (because someone else is working on them), and thus cannot be deleted. How can the server tell the frontend that the deletion of records with Id a, b, c was successful, but that records with Id x, y, z could not be deleted and should be moved back into the store and displayed in the grid?
The ExtJS store should know after the sync()
which records were really deleted server-side, and which weren't.