我想知道是否可以仅对有孩子但没有孩子的父母提供一个复选框。
类似这样的事情。我可以选择一个孩子,也可以选择该孩子的直系父母,以选择所有孩子。
parent01
parent02
parent03[]
child01[]
child02[]
child03[]
parent04[]
child04[]
parent05[]
child05[]
parent06
parent07
parent08[]
child06[]
child07[]
答案 0 :(得分:5)
以下是一个有效的示例,它遵循了我之前的回答-将有孩子的父母的可见性设置为隐藏。
为了防止通过单击节点来检查隐藏的复选框, 复选框插件属性 whole_node 和 tie_selection 应该设置为 false 。
以下代码正在读取树数据并检查每个树节点(如果父节点具有父节点)-我们将其称为祖父母节点。 如果是这样,则祖父母节点复选框的css可见性属性设置为 hidden 。
var to_hide = []; // ids of nodes that won't have checkboxes
/* get the tree data and find the nodes that have
children with children
*/
function getGrandparents() {
// tree data
var item = $('#data').jstree(true).get_json('#', {flat:true});
console.log(JSON.stringify(item, undefined, 2));
var parent, grandparent;
// var nodeIds = item.map(x => x.id); // ids of nodes in object item
var nodeIds = item.map(function(x){return x.id;}); // ids of nodes in object item
for (var i = 0; i < item.length; i += 1) {
if (has_parent(item[i])) {
parent = item[nodeIds.indexOf(item[i].parent)];
if (has_parent(parent)) {
grandparent = parent.parent + '_anchor'; // node with id grandparent is parent of parent
// and therefore shouldn't have a checkbox
if (to_hide.indexOf(grandparent) < 0) {
to_hide[to_hide.length] = grandparent; // load id into array of checkboxes that will
// be hidden
}
}
}
}
function has_parent(who) {
return ((typeof who.parent !== 'undefined') && (who.parent !== '#'));
}
}
function hideGrandparents() {
var gpa;
// set visibility of checkbox nodes in to_hide to hidden
for (var n = 0; n < to_hide.length; n += 1) {
gpa = document.getElementById(to_hide[n]);
if (gpa != null ) {
gpa.getElementsByClassName('jstree-checkbox')[0].style.visibility = 'hidden';
}
}
}
$('#data').jstree({
'core' : {
'data' : [
{ "text" : "Root node",
"children" : [
{ "text" : "Child node 1 1",
"children" : [
{ "text" : "Child node 1 1 1" },
{ "text" : "Child node 1 1 2" }
]
},
{ "text" : "Child node 1 2",
"children" : [
{ "text" : "Child node 1 2 1",
"children" : [
{ "text" : "Child node 1 2 1 1" },
{ "text" : "Child node 1 2 1 2" }
]
},
{ "text" : "Child node 1 2 2" }
]
}
]
},
{ "text" : "Root node 2",
"children" : [
{ "text" : "Child node 2 1" },
]
}
]
},
'checkbox': {
three_state: false,
whole_node: false, // should be set to false. otherwise checking the hidden checkbox
// could be possible by clicking the node
tie_selection: false, // necessary for whole_node to work
cascade: 'up down'
},
'plugins': ["checkbox"]
}).on("ready.jstree", function() {
getGrandparents();
hideGrandparents(); // hide checkboxes of root nodes that have children with children
}).on("open_node.jstree", hideGrandparents);
<link href="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.1.1/themes/default/style.min.css" rel="stylesheet"/>
<div id="data"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.3.7/jstree.min.js"></script>
答案 1 :(得分:0)