欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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');                
            }           
        });
    }
   }
});
相关标签: easyui combotree