jeffreydwalter / ColReorderWithResize

Column reordering and resizing plug-in for DataTables
http://www.datatables.net/
MIT License
42 stars 51 forks source link

ColReorderWithResize with responsive:true #32

Open PrajapatiDhara1510 opened 3 years ago

PrajapatiDhara1510 commented 3 years ago

I am trying ColReorderWithResize with responsive:true but I could not resize my columns.

Demo code:

        var table =  $('#demo_datatable').DataTable({
    responsive: true, 
    "dom": '<"custom-table-header"><"custom-table-body"rt><"custom-table-footer"lip>'
    });
    new $.fn.dataTable.ColReorder(table);

Expected output:

Column resize should be work and other column should go under expand section.

Thanks in Advance..