easyui-combotree的使用!多选的诀窍,该死的说明手册values


根据说明文档使用values  结果一直失败,最后直接用value 实现默认多选 ! 不知道说啥!


$(function(){

    $('#commcode').combotree({
        url: '${web}/sysuserinfo_getAreaCode.do',
        required: true,
value: ${areabaglimit},
        onSelect : function(node) {
        if(0 == node.id){
            //清除选中
            $('#areacode').combotree('clear');
        }
    }
    });
});


js创建组合数


html标记创建组合树


切记多选一定不要用values  直接value就可以了!



你可能感兴趣的:(easyui-combotree的使用!多选的诀窍,该死的说明手册values)