4

我正在尝试使用 jstree 的 contextmenu 捕获新创建的节点的名称。我可以捕获要在下面添加新节点的父节点的名称(使用 obj.text()),但是,我真正需要的是新创建的节点的名称。

所以,不知何故,需要有一个“onChange”事件可以在 jstree contextmenu 中调用,一旦用户在新创建的节点上点击 enter 就会触发?

有任何想法吗?我附上了上下文菜单代码:

}).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"]
    });
4

2 回答 2

6

您可以绑定到“create.jstree”事件,该事件将在创建节点后触发。在该事件的回调中,您将可以访问新创建的节点,并且可以选择回滚/还原创建节点操作。缺少它的文档,但演示页面上有一个示例。这是来自我的代码的另一个示例:

}).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...
        })
于 2012-09-04T20:42:01.793 回答
3

根据李博金的回答,似乎最新版本的 jsTree 使用事件“create_node”而不是“create”:

}).jstree({...你的jstree设置代码...})
      .bind(" create_node .jstree", function(e, data) {
        ...
       });

于 2014-05-20T16:21:47.367 回答