Answers for "datatable server side ajax reload"

0

datatables ajax reload

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

reload datatable without ajax

table.ajax.reload(null, false)

//vbjhjhvdfvjhf
Posted by: Guest on June-25-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language