Well, maybe this isn't the best solution, but you can get around with the following:
var json_obj = new Array(); oTable = $('#tb_subset').dataTable(); $.each( oTable.fnGetData(), function(i, row){ json_obj.push({first_row:row[0], second_row:row[1]}); });
You can use ajax.json() to get the original data.
ajax.json()
Allan
Replies
Well, maybe this isn't the best solution, but you can get around with the following:
You can use
ajax.json()to get the original data.Allan