Easyui控制combotree只能选择叶子节点详解编程语言

$(function() { 
    $('#tt').combotree({ 
        url: 'getTree.do', 
        onBeforeSelect: function(node) { 
            if (!$(this).tree('isLeaf', node.target)) { 
                return false; 
            } 
        }, 
        onClick: function(node) { 
            if (!$(this).tree('isLeaf', node.target)) { 
                $('#tt').combo('showPanel'); 
            } 
        } 
    }); 
})

作者:blog.ytso.com

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/14512.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论