$("#orgTree").jstree({
json_data: {
ajax:{url: ctx+"/account/org-tree.action"}
}
});
$("#orgTree").jstree("create_node",null,"first",{attr:{id:100},data:"test"});
I want create a default superNode on the tree,but the code:
$('#orgTree').jstree("create_node", null, "first", {attr : {id: 100}, data: "test"});
not working,Any help would be great.