gpt4 book ai didi

javascript - JStree:如何将 AJAX 加载的根节点的状态设置为未确定

转载 作者:行者123 更新时间:2023-11-28 01:09:17 26 4
gpt4 key购买 nike

我正在使用jstree v3.0.2 显示具有三状态复选框(选中、未选中、未确定)的节点树,我通过 AJAX 调用以 JSON 格式加载。仅加载根节点,当用户展开节点时,将按需加载子节点。因此,我们还不知道节点的哪些子节点已被(未)检查,但根节点必须根据底层子节点进行检查、未检查或未确定。

我的问题与 this one 非常相似,这希望使我的问题更容易理解,但这似乎与旧版本相关,并且没有考虑节点的延迟加载。另外,last answer这表明使用“未确定”状态似乎不起作用。

最初加载的 JSON(对于最顶层的根节点)如下所示:

[{
"id":"100",
"parent":"#", // Indicates this is a topmost root node
"text":"test1",
"children":false, // Wether or not the node has children
"state":{
"selected":true, // Node is selected
"partial_selection":false // Node state >should be< undetermined
}
},{
"id":"101",
"parent":"#",
"text":"test2",
"children":true,
"state":{
"selected":true,
"partial_selection":true
}
},{
"id":"102",
"parent":"#",
"text":"test3",
"children":true,
"state":{
"selected":false
}
}]

有没有人找到解决这个问题的方法?

最佳答案

好的,我成功解决了这个问题。显然 jstree 确实接受“未确定”状态(当使用最新版本的库时,在我的例子中是 3.0.2),如 this answer已经建议,但它仅在省略“选定”状态时才有效(这是有道理的)。引用the issue I filed在 Github 上了解更多详细信息。

关于javascript - JStree:如何将 AJAX 加载的根节点的状态设置为未确定,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24678529/

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