What is the best way to brute force clear the transaction list ?
I'm intentionally not setting Success to true.
JsonResult result = new JsonResult(); Dictionary<string, bool> response = new Dictionary<string, bool>(); response.Add("Success", false); // NOTE - Sending false. All (delete/update) confirmation to be done from the response back from server result.Data = response; return result;
But, I would like to clear prior transaction when the next SaveChange is called. I have autocommit to false, and have set the updateurl. I'm calling SaveChanges on all events (update, delete, add).
Any pointers ???
Could somebody please help here ...
Hello,
Thank you for posting into our community.
There is an API method commit. So the grid data source would be updated to the current state and it would also clear the pending transactions.