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
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