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

combotree 禁止选中某一项

程序员文章站 2022-05-18 20:48:11
...

combotree 禁止选中某一项

$("#id").combotree({//只能选择到末尾项
 onBeforeSelect: function(node) {
    if (!$(this).tree('isLeaf', node.target)) {return false;}
},
onSelect: function (node){

//让弹出框显示在最前面
(.panel.window.messagerwindow).css(zindex,9999999);(‘#id’).combotree(‘tree’).tree(‘check’,node.target);
$(‘#id’).combotree(‘tree’).tree(‘expandAll’, node.target);

}
});
相关标签: easyui combotree