I'm trying to find a nice way to get the row data stored in the grid as a json string.
Currently I'm doing this:
var grid = jQuery("#myGrid");
var testData = grid.getDataIDs();
var jsonObj = { "rows": [] };
for(var i = 0; i < testData.length; i++)
{
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top