datatables.js 234 B

12345678
  1. function loadDatatables(table_id, options) {
  2. setTimeout(() => {
  3. if ($.fn.DataTable.isDataTable(table_id)) {
  4. $(table_id).DataTable().destroy();
  5. }
  6. new DataTable(table_id, options);
  7. }, 200);
  8. }