I'm intentionally not sending back true in my JsonResult, and this is causing the subsequent action on savechanges to hold onto previous transactions.
JsonResult result = new JsonResult(); Dictionary<string, bool> response = new Dictionary<string, bool>(); response.Add("Success", false); result.Data = response; return result;
How do I force the transactions to clear after every savechanges/updateUrl call ?
Hello,
Thank you for contacting Infragistics!
To manually clear the transactions you can use the rollback method:
http://www.igniteui.com/help/api/2016.1/ui.iggrid#methods:rollback
As you can see you can rollback a specific row change or you can rollback all changes depending if you set the rowId or not. If you want to UI to update you would set the optional bool.