我试图用jstree的contextmenu捕获新创建的节点的名称。我可以捕获我在(使用obj.text())下添加新节点的父节点的名称,但是,我真正需要的是新创建的节点的名称。
所以,不知何故,需要有一个" onChange"可以在jstree contextmenu中调用的事件,一旦用户点击进入新创建的节点,就会触发该事件?
有什么想法吗?我已经附上了上下文代码:
}).jstree({
json_data: {
data: RBSTreeModel,
ajax: {
type: "POST",
data: function (n) {
return {
NodeID: n.attr("id").substring(4),
Level: n.attr("name").substring(7)
};
},
url: function (node) {
return "/Audit/GetRequirementsTreeStructure";
},
success: function (new_data) {
return new_data;
}
}
},
contextmenu: {
items: function($node) {
return {
createItem : {
"label" : "Create New Branch",
"action" : function(obj) { this.create(obj); alert(obj.text())},
"_class" : "class"
},
renameItem : {
"label" : "Rename Branch",
"action" : function(obj) { this.rename(obj);}
},
deleteItem : {
"label" : "Remove Branch",
"action" : function(obj) { this.remove(obj); }
}
};
}
},
plugins: ["themes", "json_data", "ui", "crrm", "contextmenu"]
});
答案 0 :(得分:6)
您可以绑定到“create.jstree”事件,该事件将在创建节点后触发。在该事件的回调中,您将可以访问新创建的节点,并且可以根据您的选择回滚/还原创建节点操作。它的文档缺乏,但demo page上有一个例子。这是我的代码中的另一个例子:
}).jstree({... You jstree setup code...})
.bind("create.jstree", function(e, data) {
// use your dev tools to examine the data object
// It is packed with lots of useful info
// data.rslt is your new node
if (data.rslt.parent == -1) {
alert("Can not create new root directory");
// Rollback/delete the newly created node
$.jstree.rollback(data.rlbk);
return;
}
if (!FileNameIsValid(data.rslt.name)) {
alert("Invalid file name");
// Rollback/delete the newly created node
$.jstree.rollback(data.rlbk);
return;
}
.. Your code etc...
})
答案 1 :(得分:3)
根据Bojin Li的回答,似乎最新版本的jsTree使用事件“create_node”而不是“create”:
}).jstree({... You jstree setup code...}) .bind("create_node.jstree", function(e, data) { ... });