我从 jstree 插件开始,但我遇到了问题。
我不知道为什么,但节点总是显示,即使我折叠它们。
加载树时,节点关闭,树如下所示:
我打开第一个节点,树看起来像这样:
而且,当我关闭(折叠)前一个打开的节点时,它看起来像这个(父节点似乎关闭,但其子节点可见):
jsTree 版本 pre1.0 稳定(从这里下载)
我使用我的应用程序生成的 JSON 数据是:
[
{ "data" : "Parent ...",
"state" : "closed",
"attr" : {
"id": "parentID",
"rel": "line",
"class": "jstree-unchecked"
},
"children": [
{ "data" : "proposal1 . . .",
"state" : "closed",
"attr" : {
"id": "prop1",
"rel": "proposal",
"class": "jstree-checked jstree-leaf"
}
},
{ "data" : "proposal2 . . .",
"state" : "closed",
"attr" : {
"id": "prop2",
"rel": "proposal",
"class": "jstree-unchecked jstree-leaf"
}
}
]
}]
最后,创建树的 jsTree 脚本部分是:
$("#propuestas").jstree({
"json_data" : {
"data" :vewJson,
"progressive_render" : true
}
,
"ui" : {
"select_limit" : -1,
"real_checkboxes" : true
},
"plugins" : [ "themes", "json_data","checkbox", "ui"]
});
为什么要打开父节点?为什么子/叶节点可见?
非常感谢任何帮助。我很坚持这一点。
提前致谢。