:: Forum >>

Json

How to import json's data?
Friday, September 15, 2006
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
Tuesday, April 3, 2007

This topic is archived.


Back to support forum

Forum search