Im breaking my head and cant figure out how to append data, just for testing pourpuses i did this :
var JSONINFO = {"rows": [{"id": 19, "sender": "123@test.de", "received": "2014-05-30T22:15:00", "status":"Garantia"},{"id": 19, "sender": "123@test.de", "received": "2014-05-30T22:15:00", "status":"Garantia"} ]};
var result = [];
for(var i in JSONINFO) result.push([i, JSONINFO [i]]);
$("#grid-basic").bootgrid().bootgrid("append",result.rows);
but cannot insert data in the table ... can anyone clarify the format that the array should have ?, or a more comprehensive example? ... Thanks a lot !