gpt4 book ai didi

twitter-bootstrap - Bootstrap treeview expand collapse icon coming for leaf nodes

转载 作者:行者123 更新时间:2023-12-01 11:32:09 25 4
gpt4 key购买 nike

我正在使用 bootstrap treeview .出于某种原因,即使是叶节点也有展开/折叠图标。我只想为非叶节点显示展开/折叠图标?

我正在使用以下配置:

  $('#tree').treeview({data: scope.tree, showCheckbox: true});
$('#tree').treeview('collapseAll', { silent: true });

我确信必须有一个配置来启用禁用 TreeView 中叶节点的展开/折叠图标。

最佳答案

为了回答我自己的问题,在 JSON 中,叶节点的节点属性需要设置为 null我将其发送为 空数组 []

var tree = [
{
text: "Parent 1",
nodes: [
{
text: "Child 1",
nodes: [
{
text: "Grandchild 1"
},
{
text: "Grandchild 2"
}
]
},
{
text: "Child 2"
}
]
},

{
text: "Parent 4"
nodes: [] // =======> set this as null
}
];

关于twitter-bootstrap - Bootstrap treeview expand collapse icon coming for leaf nodes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31312462/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com