how to refresh datatable after update or insert?
Depends how you using DataTables. Best way is to use the API - row.add() for example to insert a new row. If you want to reload the whole table and you are using Ajax use ajax.reload().
row.add()
ajax.reload()
Allan
It looks like you're new here. If you want to get involved, click one of these buttons!
Answers
Depends how you using DataTables. Best way is to use the API -
row.add()
for example to insert a new row. If you want to reload the whole table and you are using Ajax useajax.reload()
.Allan