Custom scrollbar for Bootstrap Table

二次信任 提交于 2019-11-30 07:46:12

This works out of the box.

Inspecting the generated bootstrap table elements, it's not scrolling the <tbody> but a wrapper div of '.fixed-table-body'.

Just use:

$(document).ready(function () {
  $('.fixed-table-body').slimScroll({});
});

Here's a working example.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!