我正在使用带有复选框的 jsTree,它会在选择子节点时检查所有父节点。
有没有办法单独选择每个节点而不管层次结构如何?
目前:
期望:
这是我的代码:
$(function () {
$('#tree').jstree({
"checkbox": {
"two_state": true,
"real_checkboxes": true,
//this is supposed to fix it but it doesn't
"override_ui": true
},
"plugins": ["themes", "ui", "checkbox"]
});
$('#tree').jstree("hide_icons");
$('#tree').jstree("hide_dots");
});
这是文档。