1、$.fn.zTree.init(obj,zSetting,zNodes)zTree的初始化方法,创建zTree必须使用此方法
var setting = {
view: {
selectedMulti: false
},
data : {
simpleData : {
enable : true,// 是否之用简单数据
idKey : 'ID', // 对应json数据中的ID
pIdKey : 'PARENT_ID', // 对应json数据中的父ID
rootPId : "0"
},
key : {
title : "NAME",
name : "NAME",
isParent : "CHILDCNT"
}
},
async:{
enable:true,
type: "post",
dataType: "json",
url:path+'/rest/baseorgMaintain/queryTreeNode',
autoParam:["ID=parentId","NAME"],
contentType:"application/x-www-form-urlencoded;charset=utf-8",
dataFilter: function(treeId, parentNode,<