I have a table, which gets dataform Javascript array. After the array gets changed, I want to change the data shown in the table without recreating it again. I start the table with
$('#table').dataTable( {
"bPaginate": false,
"data": dataArray,
"columns": [
{ "title": "....
Later on I will add one more record to dataArray, but want to preserve all the sorting, filters,... How do I redraw table with new contents of the dataArray?