Ext TreePanel

1、在TreePanel页面声明一个变量node
   refreshButton : null,
   node : null,
2、在TreePanel的click事件中添加如下代码
   tree_click : function(node)
   {
       this.node = node
   }
3、在refreshButton的刷新事件中
   refreshButton_onclick : function()
   {
        var node = this.node; 
       alert(node);
        if(node != null)
        {
            var nodepath = node.getPath();
            this.root.reload();
            this.expandPath(nodepath);
            this.selectPath(nodepath);

        }
        else
        {
        this.treePanel.root.reload();
        }
   }
4、第一次点击refreshButton按钮,没错,第二次报错,但两次alert(node)的值都一样
   

你可能感兴趣的:(ext)