when I use AsyncTreeNode,I found that AsyncTreeNode's loader can't override
for ex:
代码
when I click root2 Node,"http://server/webapps/treeNode.jsp" never gets called。
check source code,maybe there is a bug
createNode:function(attr)
......
if(this.applyLoader!==false){attr.loader=this;}----------------set treePanel's loader to node's loader,the scope of "this" maybe point to treepanel.
so I changed:
if(this.applyLoader!==false){if(attr.loader==null)attr.loader=this;}
dang dang dang dang.It's work now!well done!