【发布时间】:2012-01-18 13:34:05
【问题描述】:
我正在使用 jstree pre 1.0 和 themeroller 和 checkbox 插件。 我正在使用带有深色 hive 主题的 jquery ui 1.8.6。
树工作正常,但未显示复选框。 有解决办法吗?
【问题讨论】:
-
您找到解决方案了吗?
我正在使用 jstree pre 1.0 和 themeroller 和 checkbox 插件。 我正在使用带有深色 hive 主题的 jquery ui 1.8.6。
树工作正常,但未显示复选框。 有解决办法吗?
【问题讨论】:
您能否确认以下内容 1- 是其他主题可见的复选框。 2-您是否尝试过firebug以查看加载图像是否有任何问题。
【讨论】:
这可能只是一个临时修复,但在我将以下 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;
}
【讨论】: