jsTree 重命名不起作用

发布于 2024-11-05 05:16:29 字数 1631 浏览 7 评论 0原文

我将 jstree 与 crrm 和 json_data 插件一起使用。当我尝试在节点上调用重命名函数时,出现错误 obj.trigger 不是函数。

我的代码:

    //definiton of tree
    $('selector').jstree({
      //config for tree themes plugin
      'themes' : {
        'theme' : 'classic',
        'dots' : true,
        'icons' : true
      },
      //config for tree json_data plugin
      json_data : {
        ajax : {
          url: '?',
          type: 'POST',
          dataType: 'json',
          beforeSend: function( xhr, s ){
            xhr.setRequestHeader("Accept", "text/x-json");

          },
          context: this,
          data: $.proxy(this,'_generateTreeJSONData'),
          success: $.proxy(this,'_onTreeLoad'),
          error: $.proxy(this,'_onTreeError')
        }
      },
      //config for tree drag and drop plugin
      dnd:{
        drop_finish: $.proxy(this,'_onTreeDropFinish'),
        drag_finish: $.proxy(this,'_onTreeDragFinish'),
        drop_check: $.proxy(this,'_onTreeDropCheck'),
        drag_check: $.proxy(this,'_onTreeDragCheck'),
        drop_target: false,
        drag_target: false
      },
      //config for tree creating renaming removing moving (crrm) plugin
      crrm:{
         move:{
          check_move: $.proxy(this,'_onTreeMoveCheck')
        }
      },
      plugins : ['themes','json_data','ui','dnd','crrm','contextmenu']
    });

    //conect to click of tree node
    $(".ep-acb-tree a").live("click", $.proxy(this,'_onClickTreeNode'));

    _onClickTreeNode: function(evt){
      $('selector').jstree('rename',evt.currentTarget);
    },

这只是我的代码的一部分,但是拖放和其他一切都工作正常。

感谢您的帮助。 本

i'm using jstree with the crrm and the json_data plugin. When I try to call the rename function on a node a get an error obj.trigger is not a function.

my code:

    //definiton of tree
    $('selector').jstree({
      //config for tree themes plugin
      'themes' : {
        'theme' : 'classic',
        'dots' : true,
        'icons' : true
      },
      //config for tree json_data plugin
      json_data : {
        ajax : {
          url: '?',
          type: 'POST',
          dataType: 'json',
          beforeSend: function( xhr, s ){
            xhr.setRequestHeader("Accept", "text/x-json");

          },
          context: this,
          data: $.proxy(this,'_generateTreeJSONData'),
          success: $.proxy(this,'_onTreeLoad'),
          error: $.proxy(this,'_onTreeError')
        }
      },
      //config for tree drag and drop plugin
      dnd:{
        drop_finish: $.proxy(this,'_onTreeDropFinish'),
        drag_finish: $.proxy(this,'_onTreeDragFinish'),
        drop_check: $.proxy(this,'_onTreeDropCheck'),
        drag_check: $.proxy(this,'_onTreeDragCheck'),
        drop_target: false,
        drag_target: false
      },
      //config for tree creating renaming removing moving (crrm) plugin
      crrm:{
         move:{
          check_move: $.proxy(this,'_onTreeMoveCheck')
        }
      },
      plugins : ['themes','json_data','ui','dnd','crrm','contextmenu']
    });

    //conect to click of tree node
    $(".ep-acb-tree a").live("click", $.proxy(this,'_onClickTreeNode'));

    _onClickTreeNode: function(evt){
      $('selector').jstree('rename',evt.currentTarget);
    },

This is only a part of my code but drag and drop and everything else is working fine.

Thanks for your help.
Ben

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

擦肩而过的背影 2024-11-12 05:16:29

您是否尝试过像这样绑定到 rename_node

.bind("rename_node.jstree", function (node, ref) {
// Your code goes here....
});

Have you tried binding to the rename_node like so:

.bind("rename_node.jstree", function (node, ref) {
// Your code goes here....
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文