Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
455
jQuery iGrid transactionsAsString method
posted

I am trying to use the 'transactionsAsString' utility function client side to capture the list of transactions so that I can manually post them to a server side method for processing.

var transactions = $("#grid1").igGrid("transactionsAsString");

Some documentation that I found states..

'This utility function serializes the accumulated global transaction log, not the local one.'

http://ko.infragistics.com/community/blogs/angel_todorov/archive/2011/11/14/jquery-grids-unleashed-flat-grid-architecture-javascript.aspx

So, when using this function client side, I end up with multiple transactions per row if I have made multiple edits on that row.

My question is simple, how do I get the aggregated (NOT accumulated) transaction list on the client side?  This would be the same list accessed through the Request object if using the 'saveChanges' function to trigger the ajax call to the UpdateURL method.

gridModel.LoadTransactions<GmiProduct>(HttpContext.Request.Form["ig_transactions"])