zoukankan      html  css  js  c++  java
  • easyui combotree不让父级选中

    easyui combotree不让父级选中?

    <ul id="combotree"></ul>
     $(function () {
            $("#combotree").combotree({
                 300,
                data: [{
                    "id": 1,
                    "text": "My Documents",
                    "children": [{
                        "id": 11,
                        "text": "Photos",
                        "state": "closed",
                        "children": [{
                            "id": 111,
                            "text": "Friend"
                        }, {
                            "id": 112,
                            "text": "Wife"
                        }, {
                            "id": 113,
                            "text": "Company"
                        }]
                    }, {
                        "id": 12,
                        "text": "Program Files",
                        "children": [{
                            "id": 121,
                            "text": "Intel"
                        }, {
                            "id": 122,
                            "text": "Java",
                            "attributes": {
                                "p1": "Custom Attribute1",
                                "p2": "Custom Attribute2"
                            }
                        }, {
                            "id": 123,
                            "text": "Microsoft Office"
                        }, {
                            "id": 124,
                            "text": "Games",
                            "checked": true
                        }]
                    }, {
                        "id": 13,
                        "text": "index.html"
                    }, {
                        "id": 14,
                        "text": "about.html"
                    }, {
                        "id": 15,
                        "text": "welcome.html"
                    }]
                }]
                ,
                method: 'get',
                ines: true,
                multiple: true,
                onBeforeCheck: function (node) {
                    //alert($("#combotree").combotree("tree").tree('isLeaf', node.target));
                    if (!$("#combotree").combotree("tree").tree('isLeaf', node.target)) {
                        return false;
                    }
                }
            })
        })

    关键代码:

    onBeforeCheck: function (node) {
                    //alert($("#combotree").combotree("tree").tree('isLeaf', node.target));
                    if (!$("#combotree").combotree("tree").tree('isLeaf', node.target)) {
                        return false;
                    }
                }

    技术交流QQ群:15129679

  • 相关阅读:
    C#根据url生成唯一的key
    MyBatis基本配置和实践(四)
    MyBatis基本配置和实践(三)
    MyBatis基本配置和实践(二)
    MyBatis基本配置和实践(一)
    dbcp2、c3p0、druid连接池的简单配置
    HTTP长连接和短连接
    Java Web高性能开发
    三层构架 和 MVC 是什么?
    Docker bridge探索
  • 原文地址:https://www.cnblogs.com/yeminglong/p/5891573.html
Copyright © 2011-2022 走看看