0
我想在創建時設置節點的類型。這是我想要的:如何在創建時設置節點的類型?
$("#tree").jstree("create_node", parentId, {text: "mynode", id: "myid", type: "mytype"}, "last");
這不設置類型。我知道set_type
存在,但我想知道節點的創建是否可行。
我想在創建時設置節點的類型。這是我想要的:如何在創建時設置節點的類型?
$("#tree").jstree("create_node", parentId, {text: "mynode", id: "myid", type: "mytype"}, "last");
這不設置類型。我知道set_type
存在,但我想知道節點的創建是否可行。
你沒有表現出你的樹全的配置,所以請檢查的幾件事情:
types
插件作爲"plugins": [ "types" ]
你應該配置types
例如像這樣:
"types" : {
"tree" : {
"icon" : 'https://www.jstree.com/tree-icon.png'
},
"mytype" : {
"icon" : 'glyphicon glyphicon-leaf'
}
}
觀看演示JS Fiddle
我相信這個答案,你還會發現你的解決方案:http://stackoverflow.com/questions/6341279/jstree-not-creating-節點的-一個特定類型的 – matan7890