数据表的自定义滚动条

发布于 2024-10-05 09:13:23 字数 26 浏览 4 评论 0原文

有什么方法可以自定义数据表的滚动条吗?

Is there any way to customize the scrollbars for the DataTables..?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浴红衣 2024-10-12 09:13:23

您可以使用 jScrollPane 来实现此目的:

http://jscrollpane.kelvinluck.com/

我们目前使用的是旧版本但可以在数据表初始化后将其连接到数据表。这里也会有相当多的 CSS 工作,但这是您开始所需的代码的关键:

$('#foo').dataTable({
    "fnInitComplete": function() {
        // custom scroll bars
        $('#icis_dashboard')
        .find('.dataTables_scrollBody')
        .jScrollPane();
    },
    "sScrollY": "242px"
});

You can use jScrollPane for this:

http://jscrollpane.kelvinluck.com/

We are currently using the older version but it can be wired up to the datatable after the datatable has been initialised. there will be a a fair bit of CSS work here as well but this is the crux of the code you need to get started:

$('#foo').dataTable({
    "fnInitComplete": function() {
        // custom scroll bars
        $('#icis_dashboard')
        .find('.dataTables_scrollBody')
        .jScrollPane();
    },
    "sScrollY": "242px"
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文