hi (sorry the english)

¿maybe for example:

var functionOpenNode = function(node){
  var children;
        try {
                children = node.get("children");
        } catch (ex) {
                children = null;
        }
        
  if (children) {
    for (var i = children.length - 1; i >= 0; i--) {
      functionOpenNode(children.getItem(i));
    }
  }
  
  tree.openNodeAndParents(node);
};

tree.addListener("changeDelegate", function(e){
  functionOpenNode(tree.getModel());
})



--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Open-All-Nodes-in-VirtualTree-tp7587679p7587684.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to