+ 2
How to refresh jQuery datatable grid refresh on add/delete of record ?
2 Antworten
+ 2
When you add/delete a record, you'll want to redraw the table. This should refresh the table with the new information for you.
$('#myTableID').DataTable().columns.adjust().draw();
^That should do the trick for you. I actually ran into this issue the other day and that's how I resolved it. Note: This is based on DataTables 1.10. If you're using older version of DataTables, I can't testify if it'll work or not.
Good luck!
0
yes , thanks and also I tried destroy and set html("") blank of datatable before re intialize