not showing new added data.

not showing new added data.

jausonjauson Posts: 7Questions: 0Answers: 0
edited December 2011 in DataTables 1.8
helo, im having a problem with my DT, my new added data isn't showing. here's my code.





@import "css/demo_table.css";
table{width:100%}


var oTable;

$(document).ready(function() {
oTable = $('#the_table').dataTable({
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "get_data_from_history_manager.php"
});

/* Re-draw the table - you wouldn't want to do it here, but it's an example :-) */
oTable.fnDraw();
} );
This discussion has been closed.