我们可以将 SlimScroll 或 PerfectScrollbar 插件应用于 jQuery Datatable 默认垂直滚动吗

Can we apply SlimScroll or PerfectScrollbar plugin to jQuery Datatable default vertical scroll

我正在使用 Datatable ver 1.10,我启用了垂直滚动。现在数据表显示 window 默认滚动样式。

是否可以 change/implement 数据表滚动条上的一些其他滚动条?让它更漂亮更花哨。

我在 Whosebug 上试过这个 solution,但它挤压了 header。 我也想要 header 和页脚固定位置。

这是我的工作代码

// 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();
},