3.2.0

Json

How to import json's data?
September 15,
I ended up writing a client-side function that could look up the column number to turn it into a name, then look up the data from the JSON object.

function loadGridData(i,j)
{
var colName = columnsShort[j];
var data = JSONObjectName[i][colName];
return data;
}

You need to populate the columnsShort array before the grid renders.
Tony Mudd
April 3,

This topic is archived.

See also:


Back to support forum