Hello,
How can I expand all ajax tree ?
I've tried with
this.root.recursive(function(){
if(this.isRoot()) return;
this.toggle(true);
});and
tree.addEvent('loadNode', function(node){
node.getChildren().each(function(child){
child.toggle();
});
});
the last one works as expected but how can I remove loadNode event when all tree finish to expand ?