带有 themeroller 插件的 jsTree:复选框不会显示

发布于 2024-12-27 18:52:52 字数 120 浏览 1 评论 0原文

我正在使用 jstree pre 1.0 以及 themeroller 和 checkbox 插件。 我正在使用 jquery ui 1.8.6 和深色蜂巢主题。

该树工作正常,但未显示复选框。 有解决办法吗?

I'm using jstree pre 1.0 with the themeroller and checkbox plugin.
I'm using jquery ui 1.8.6 with the dark hive theme.

The tree is working fine, but the checkboxes are not shown.
Is there a solution?

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

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

发布评论

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

评论(2

放低过去 2025-01-03 18:52:52

您能否确认以下内容
1- 复选框在其他主题中可见。
2-您是否尝试过firebug来查看加载图像是否有问题。

Can you confirm the following
1- are check boxes visible with other themes.
2- Have you tried firebug to see if there is any problem with loading the image.

各自安好 2025-01-03 18:52:52

这可能只是一个临时修复,但在我将以下 css 类添加到我的页面后,它对我有用:

.jstree ins {
background-image: url(http://static.jstree.com/v.1.0pre/themes/default/d.png);
}

.jstree .jstree-unchecked > a > .jstree-checkbox {
background-position: -2px -19px;
}

.jstree .jstree-checked > a > .jstree-checkbox {
background-position: -38px -19px;
}

.jstree .jstree-undetermined > a > .jstree-checkbox {
background-position: -20px -19px;
}

This may just be a temporary fix but it worked for me after I added the following css classes to my page:

.jstree ins {
background-image: url(http://static.jstree.com/v.1.0pre/themes/default/d.png);
}

.jstree .jstree-unchecked > a > .jstree-checkbox {
background-position: -2px -19px;
}

.jstree .jstree-checked > a > .jstree-checkbox {
background-position: -38px -19px;
}

.jstree .jstree-undetermined > a > .jstree-checkbox {
background-position: -20px -19px;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文