0 Replies Latest reply on Oct 5, 2011 5:50 PM by davecruz

    rich:tree queueNodeExpand

    davecruz

      Hello there.

       

      I was hoping someone could point out the error in my use of the queueNodeExpand() method.

       

      Essentially I'm getting accessing the UITree object representation in my bean of the rich:tree I have in my JSP.  I'm trying to expand a node on this tree.  I've walked it through the debugger and it's getting the parentRowKey fine.  It seems to run the queueNodeExpand(parentRowKey) fine too, but the change isn't showing in the browser.  I'm wondering if it's just queuing the expand and not actually doing it...is there some way I can execute everything in the queue?

       

      Any help would be greatly appreciated.

       

      {code}...

      TreeRowKey parentRowKey = (TreeRowKey)tree.getParentRowKey(rowKey);

      tree.queueNodeExpand(parentRowKey);

      ...{code}