Hi all,
I have this class:
I want to load a datatable, so I do this way:
How can I load the datatable if the data is an array of object like this:
Thanks,
Luciano
I have this class:
function Clazz() { this.id; this.description; } Clazz.prototype._findAll = function(_callback) { $.ajax({ type : "GET", url : "api/route", dataType : "json", success : function(data) { _callback(data); } }); };
I want to load a datatable, so I do this way:
function loadTable(data){ // Here a I want to load my datatable } $(function(){ var clazz = new Clazz(); clazz._findAll(loadTable); });
How can I load the datatable if the data is an array of object like this:
[{"id":1,"description":"Test 1"},{"id":2,"description":"Test 2"}]
Thanks,
Luciano