How to destroy a datatable?

后端 未结 8 1658
萌比男神i
萌比男神i 2021-02-01 05:19

I\'m using datatables and using bootstrap-daterangepicker to select a range for which data will be shown in Datatables.

It is working fine.

The problem is when I

8条回答
  •  难免孤独
    2021-02-01 06:12

    For DataTables 1.10, the calls are:

    // Destroy dataTable
    $('#feedback-datatable').DataTable.destroy();
    
    // Remove DOM elements
    $('#feedback-datatable').empty();
    

提交回复
热议问题