Can you please take a look at This Demo and let me know why I am not able to load the data from the array into the DataTable instance correctly?
Here is the code which I have:
var data = [ "Dai Rios", "Personnel Lead", "Edinburgh", "2290", "2012/09/26", "$217,500" ];
var tbl = $('#example').DataTable();
$("#load").on("click", function(){
tbl.rows.add(data).draw();
});