Answers for "datatable destroy and reload"

0

remove previous datatable instance

//Destroy the old Datatable
$('#equictntbl').DataTable().clear().destroy();
Posted by: Guest on November-11-2020
1

Reload datatable

Javascript12345var table = $('#example').DataTable(); table.ajax.reload( function ( json ) {    $('#myInput').val( json.lastInput );} );
Posted by: Guest on August-26-2021

Code answers related to "datatable destroy and reload"

Code answers related to "Javascript"

Browse Popular Code Answers by Language