The data for the third grid that I want to add to the third level comes from:
$.getJSON("newdata3.php?level=5", function(json){
data5=json;
})
Here it is the grid:
var ordersSource3 =
{
datafields: [
{ name: 'amtrackid', type: 'string' },
{ name: 'Ibc', type: 'integer' },
{ name: 'Obarac', type: 'integer' }
],
id:'amtrackid',
record:'amtrackid',
localdata:data5
};
var ordersDataAdapter3 = new $.jqx.dataAdapter(ordersSource3, { autoBind: true });
orders3 = ordersDataAdapter3.records;
var nestedGrids3 = new Array();
};