作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用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/
我是一名优秀的程序员,十分优秀!