任意类型rootPID
目录: [参数说明] --> [setting 详解]概述
当 isSimpleData 设置为 true,zTree 需要在增加、移动节点时修正其 treeNodeParentKey 对应属性值。
rootPID 用于通知 zTree,对于根节点 treeNodeParentKey 对应属性值
rootPID 可以是任何类型,请尽可能与 treeNodeParentKey 对应属性值一致
默认值:null
示例
描述:
使用简单 Array 格式的数据
setting 举例:
var setting = {
isSimpleData : true,
rootPID : -1,
treeNodeKey : "id",
treeNodeParentKey : "pId",
......
};
简单 Array 数据 举例:
var treeNodes = [
{"id":1, "pId":0, "name":"test1"},
{"id":11, "pId":1, "name":"test11"},
{"id":12, "pId":1, "name":"test12"},
{"id":111, "pId":11, "name":"test111"},
......
];