Quantcast
Channel: Recent Discussions — DataTables forums
Viewing all articles
Browse latest Browse all 82126

Don't user aaData

$
0
0
Hi all,

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

Viewing all articles
Browse latest Browse all 82126

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>