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

时间:2012-01-18 13:34:05

标签: jquery-ui jstree

我正在使用带有themeroller和checkbox插件的jstree pre 1.0。 我正在使用jquery ui 1.8.6和黑暗的蜂巢主题。

树工作正常,但未显示复选框。 有解决方案吗?

2 个答案:

答案 0 :(得分:0)

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

答案 1 :(得分:0)

这可能只是一个临时修复,但在我将以下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;
}