Hi jonj,
The ‘getrenderedrowdata’ method accepts as a parameter the index of a Grid row and returns the row’s data. To get the rows count, sorting, paging or filtering information, you may use the ‘getdatainformation ‘ method. Having the rows count, you can loop through the rows and call the ‘getrenderedrowdata’. Another possible solution is to use the jqxDataAdapter’s records field as the Grid is bound through a data adapter plug-in. When the data is loaded, it is saved in the jqxDataAdapter’s records field.
Example:
var dataAdapter = new $.jqx.dataAdapter(source, { loadComplete: function () { var records = dataAdapter.records; }});
Best Regards,
Peter Stoev
jQWidgets Team
http://www.jqwidgets.com