Jquery Datatable to responsive data tables

后端 未结 2 965
迷失自我
迷失自我 2021-01-25 12:00

I am new to data tables and never created a responsive data tables. So i may be asking much help.

Here is link for JQuery data tables editables. I want to create it resp

2条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-25 12:16

    You can do it with jquery only. fnAdjustColumnSizing function automatically adjust the with of the headers. When you resize the window we use this funtion.

    $(window).resize(function(){
       //Redraw datable
       $('#your-table').dataTable().fnAdjustColumnSizing();//Automatically sets header size
    });
    

提交回复
热议问题