web-dev-qa-db-ja.com

プログラムで子ノードをjstreeに追加する

Jstreeにノードを動的に追加するコードを書こうとしています。 http://www.jstree.com/documentation/crrm のドキュメントをフォローしましたが、簡単な例を実行できません-ノードchild2が追加されていますが、追加されています指定されたように「child1.id」ではなく「root.id」ノードに追加されました...ヒントをいただければ幸いです。コードは次のとおりです

<html>
<head>
<script type="text/javascript" src="http://static.jstree.com/v.1.0rc2/jquery.js"></script>
<script type="text/javascript" src="http://static.jstree.com/v.1.0rc2/jquery.jstree.js"></script>

<script type="text/javascript">
$(document).ready(function() {
    $(function () {
        $("#tree").jstree({ 
            "json_data" : {
                "data" : [
                    { 
                        "data" : "parent", 
                        "attr" : { "id" : "root.id" }, 
                        "children" : [ { "data" : "child1",
                                         "attr" : { "id" : "child1.id" },
                                         "children" : [ ] }
                                     ]
                    },
                ]
            },
            "plugins" : [ "themes", "json_data", "crrm" ]
        });
    });
    $("#add").click(function() {
        $("#tree").jstree("create", $("#child1.id"), "inside",  { "data" : "child2" },
                          function() { alert("added"); }, true);
    });
});
</script>
</head>

<body>

<div id="tree" name="tree"></div>

<input type="button" id="add" value="add" />
</body>
</html>
13
user419766

IDでピリオドを使用する場合は、次のようにピリオドをエスケープする必要があります。

$("#tree").jstree("create", $("#child1\\.id"), "inside",  { "data" : "child2" },
                          function() { alert("added"); }, true);

これは、jQueryセレクターの使用方法によるものです。 jsTree FAQここにあります: http://www.jstree.com/faq/

14
WSkid

最初にjstreeを初期化し(私の場合はajaxを使用します)、check_callbackをコアobjに入れ、次のようにコアobjの後にプラグインを呼び出します。

jQuery('#jstree_demo_div').jstree({
    'core' : {
          'data' : {
            'url' : 'data/mapas.php',

          },
          "check_callback" : function(e,data){
              console.log(data)
          }
      },
      "plugins" : [ "contextmenu" ] })

次に、この行を使用して、$( '#j1_1')を親、データをjson、 'last'を位置、または 'first'、関数コールバック(私の場合は関数tales())、内部引数をtrue

jQuery("#jstree_demo_div").jstree(true).create_node( $('#j1_1'), {text: "New node", id: true} , "last",tales(), true );
3
Tales