jsTree不创建特定类型的节点

时间:2011-06-14 08:59:30

标签: jquery jstree

我已按照http://www.jstree.com/demo/types的最后一个示例中的代码片段创建了一个给定类型的节点,但我不知道它为什么不起作用。

HTML片段:

    <form>
        <button id="buttonAddMenu" type="button">Créer Menu</button>
        <button id="buttonAddParameter" type="button">Créer Paramètre</button>
        <button id="buttonRename" type="button">Renomer</button>
        <button id="buttonRemove" type="button">Supprimer</button>
        <button id="buttonShowData" type="button">Show Data</button>
    </form>
    <div id="checkListParams">
    <ul>
        <li id="new001"><a href="#">Root menu 1</a></li>
        <li id="new002"><a href="#">Root menu 2</a>
            <ul>
                <li><a href="#">Menu 2.1</a></li>
                <li><a href="#">Menu 2.2</a>
                    <ul>
                        <li rel="parameter"><a href="#">Parameter A</a></li>
                    </ul>
                </li>
            </ul>
        </li>
    </ul>
    </div>

使用Javascript:

$(document).ready(function() {
//================
//Configuring tree
//================
$("#checkListParams").jstree({ 
    "ui" : {
        "select_limit": 1
    },
    "contextmenu" : {
        "select_node": true
    },
    "hotkeys" : {
        "del": false //disable deleting nodes only via DEL key
    },
    "types" : {
        "valid_children" : [ "default" ],
        "use_data" : true,
        "types" : {
            "default" : {
                "valid_children" : [ "all" ]
            },
            "parameter" : {
                "icon" : { 
                    "image" : "site/media/img/icons/checklist_parameter.png" 
                },
                "valid_children" : [ "none" ],
                "create_node": false
            }
        }
    },
    "core" : { "initially_open" : [ "all" ] },
    "plugins" : [ 
    "themes", "html_data", "xml_data", "ui", "crrm", "dnd", 
    "contextmenu", "hotkeys", "types"
    ]
});

//==========================
//Configuring button actions
//==========================
$("#buttonAddMenu").click(function() {
    $("#checkListParams").jstree("create");
});

$("#buttonAddParameter").click(function() {
    //$("#checkListParams").jstree("create", null, "inside"); //works!
    $("#checkListParams").jstree("create", null, "inside", { "attr" : { "rel" : "parameter" } });
});

$("#buttonRemove").click(function() {
    $("#checkListParams").jstree("remove");
})

$("#buttonRename").click(function() {
    $("#checkListParams").jstree("rename");
})

$("#buttonShowData").click(function() {
    var nodes = $("#checkListParams").jstree("get_xml", {
        "li_attr" : [ "id" , "class", "rel" ]
    });
    alert(nodes);
})

});

该行

$(&#34; #checkListParams&#34;)。jstree(&#34; create&#34;,null,&#34; inside&#34;,{&#34; attr&#34;:{& #34; rel&#34;:&#34;参数&#34;}});

无效。我尝试将类型更改为&#34;默认&#34;,但没有成功...此外,我没有收到错误消息(我不喜欢在收到错误消息时不要跑。)

提前谢谢。

更新

使用http://osdir.com/ml/jstree/2011-04/msg00126.html中的说明解决。 明确列出所有有效的孩子(而不是使用&#34; all&#34;)解决了这个问题。

我将检查明天是否在jsTree问题页面中提交了类似的错误,可能会添加一个新错误。

非常感谢。

1 个答案:

答案 0 :(得分:2)

按照某些人的要求重复上述更新:

使用http://osdir.com/ml/jstree/2011-04/msg00126.html中的说明解决。明确列出所有有效的孩子(而不是使用“全部”)解决了这个问题。

我将检查明天是否在jsTree问题页面中提交了类似的错误,可能会添加一个新错误。

非常感谢。