2015-10-20 61 views
0

我想在創建時設置節點的類型。這是我想要的:如何在創建時設置節點的類型?

$("#tree").jstree("create_node", parentId, {text: "mynode", id: "myid", type: "mytype"}, "last"); 

這不設置類型。我知道set_type存在,但我想知道節點的創建是否可行。

+0

我相信這個答案,你還會發現你的解決方案:http://stackoverflow.com/questions/6341279/jstree-not-creating-節點的-一個特定類型的 – matan7890

回答

0

你沒有表現出你的樹全的配置,所以請檢查的幾件事情:

  1. 你應該在樹的配置已經啓用types插件作爲"plugins": [ "types" ]
  2. 你應該配置types例如像這樣:

    "types" : { 
        "tree" : { 
         "icon" : 'https://www.jstree.com/tree-icon.png' 
        }, 
        "mytype" : { 
         "icon" : 'glyphicon glyphicon-leaf' 
        } 
    } 
    

觀看演示JS Fiddle

相關問題