Answers for "datatable reload ajax url"

2

ajax datatable reload paging retained

// table.ajax.reload(callback, resetPaging)
table.ajax.reload(null, false)
Posted by: Guest on October-07-2020
0

datatables ajax reload

var table = $('#example').DataTable( {
    ajax: "data.json"
} );
 
setInterval( function () {
    table.ajax.reload();
}, 30000 );
Posted by: Guest on October-23-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language