Fancytree JSON 用于激活节点的参数
Fancytree JSON parameter for activating a node
我正在尝试通过 AJAX 调用 returns 和 JSON 来初始化 Fancytree。 JSON里面有没有激活初始化子节点的选项?
下面是我的初始化JSON示例。
JS FT 初始化:
/* ------*/
source: {
url: "getTreeInitData",
cache: false
},
/* ------*/
JS 选项:
activeVisible: true,
aria: true,
autoActivate: true,
autoCollapse: true,
autoScroll: false,
clickFolderMode: 4,
checkbox: false,
checkboxAutoHide: undefined,
debugLevel: 4,
disabled: false,
focusOnSelect: false,
escapeTitles: false,
generateIds: false,
idPrefix: "ft_",
icon: true,
keyPathSeparator: "/",
minExpandLevel: 1,
quicksearch: false,
rtl: false,
selectMode: 2,
tabindex: "0",
titlesTabbable: false,
tooltip: false
JSON 来自 URL“getTreeInitData”的数据:
[
{
"title": "Whole Country",
"key": "cntry_level",
"children": [
{
"title": "BENGALURU",
"key": "13",
"lazy": true,
"selected": true
}
]
}
]
收到初始化数据后,我希望在树中激活子 Bengaluru。
正如你从上面看到的,我已经尝试过选择,但它主要用于我不在我的树中使用的复选框。
在查看 Fancy tree 文档中的源代码后找到 JSON 选项。我应该使用 "active" 而不是 "selected"。
[
{
"title": "Whole Country",
"key": "cntry_level",
"children": [
{
"title": "BENGALURU",
"key": "13",
"lazy": true,
"active": true
}
]
}
]
有人可能也知道。谢谢!
我正在尝试通过 AJAX 调用 returns 和 JSON 来初始化 Fancytree。 JSON里面有没有激活初始化子节点的选项?
下面是我的初始化JSON示例。
JS FT 初始化:
/* ------*/
source: {
url: "getTreeInitData",
cache: false
},
/* ------*/
JS 选项:
activeVisible: true,
aria: true,
autoActivate: true,
autoCollapse: true,
autoScroll: false,
clickFolderMode: 4,
checkbox: false,
checkboxAutoHide: undefined,
debugLevel: 4,
disabled: false,
focusOnSelect: false,
escapeTitles: false,
generateIds: false,
idPrefix: "ft_",
icon: true,
keyPathSeparator: "/",
minExpandLevel: 1,
quicksearch: false,
rtl: false,
selectMode: 2,
tabindex: "0",
titlesTabbable: false,
tooltip: false
JSON 来自 URL“getTreeInitData”的数据:
[
{
"title": "Whole Country",
"key": "cntry_level",
"children": [
{
"title": "BENGALURU",
"key": "13",
"lazy": true,
"selected": true
}
]
}
]
收到初始化数据后,我希望在树中激活子 Bengaluru。 正如你从上面看到的,我已经尝试过选择,但它主要用于我不在我的树中使用的复选框。
在查看 Fancy tree 文档中的源代码后找到 JSON 选项。我应该使用 "active" 而不是 "selected"。
[
{
"title": "Whole Country",
"key": "cntry_level",
"children": [
{
"title": "BENGALURU",
"key": "13",
"lazy": true,
"active": true
}
]
}
]
有人可能也知道。谢谢!