Hello,
I have a jqxgrid bound to a JSON data source. What I would like to do is bind the grid to my JSON data source, which in this case comes from Angular so it is a $scope property. Then when the user clicks save, I want to just send the updated data source, again from the $scope property, to the server for a batch update. It appears though that the grid must use a copy of the data source because none of my grid edits show up in my original data source property.
Is there a way to “flush” the grid’s data source back out to the original source property? I don’t want to update it row-by-row which seems to be the default.
Also, what is the advantage to going through a data adapter as opposed to just binding the grid directly to the data source? Both approaches seem to work, aside from the aforementioned sync issue, so I’m not sure what the difference is.
Thanks!
Mike