Closed mnfsbmz closed 3 years ago
Hi mnfsbmz,
I assumed that your PHP code able get data and return them in JSON format.
In your success
ajax callback, make sure that:
myAppendGrid
is initializedresult
is an array of object, see the example of load methodIf you still have problems, you may try to use ajax done
style instead of success
.
$.ajax({
url: ...
}).done(function(result){
myAppendGrid.load(result);
});
Help please. How can load data using myAppendGrid.load();