Can we apply SlimScroll or PerfectScrollbar plugin

2019-06-11 22:32发布

I am using Datatable ver 1.10, I enable the vertical scrolling. now datatable showing window default scroll style.

Is it possible to change/implement some other scrollBar on datatable scrollbar? to make it more beautiful and fancy.

enter image description here

I tried this solution at stackoverflow but it squeez the header. also I want header and footer fixed position.

1条回答
Animai°情兽
2楼-- · 2019-06-11 23:09

here is my working code

// when initialization is completed then apply scroll plugin
"fnInitComplete":function(){
    $('.dataTables_scrollBody').perfectScrollbar();
},

//apply scroll on this height
"scrollY": 450,

//on paginition page 2,3.. often scroll shown, so reset it and assign it again 
"fnDrawCallback": function( oSettings ) {
    $('.dataTables_scrollBody').perfectScrollbar('destroy').perfectScrollbar();
},
查看更多
登录 后发表回答