Easyui combotree在编辑的时候回显
程序员文章站
2022-05-18 20:49:23
...
一般在分配权限的时候,编辑的时候需要让combotree回显。以下代码只是个人备份的,供参考。
$('#XXX').combotree({
url : '',
required : true,
lines : true,
multiple : true,
checkbox : true,
onlyLeafCheck : true,
onLoadSuccess : funciton(node,data){
var _this = this;
if(data){
$(data).each(function(index,value){
if($.inArray(value.text,auth)!=-1){//auth为提前准备的权限数组
$(_this).tree('check',value.target);
}
if(this.state=='closed'){
$(_this).tree('expandAll');
}
});
}
}
});