Hi linb,
I tried this code below :
linb.request("
http://localhost:8081/order.php,
function(rep){
var obj = _.unserialize(rep);
this.treegrid5.setRows(obj.rows);
//alert(rep);
},
function(rep){
alert(rep);
}, null,
{method:'post'}
);
and in the firebug i see this response:
{rows: [ ["sub13333","sub12","sub13","sub14"], ["sub21","sub22","sub23","sub24"]]}
but the problem is it's not displaying on the form. any trick on here?
Thanks again.