Re: AbstractTree expandAll is missing

2008-06-10 Thread Dimedrol
jwcarman wrote: getTreeState().expandAll()? Hmmm, seems like I dont' have this procedure. See screenshot - http://i27.tinypic.com/30sg3t4.gif http://i27.tinypic.com/30sg3t4.gif -- View this message in context:

Re: AbstractTree expandAll is missing

2008-06-10 Thread Dimedrol
Matej Knopp-2 wrote: Looks like you are using the old tree... Yes. We use Wicket 1.2.6 not 2.x and above. Is there any workarounds about this problem? (expanding all tree) -- View this message in context: http://www.nabble.com/AbstractTree-expandAll-is-missing-tp17735081p17750908.html

AbstractTree expandAll is missing

2008-06-09 Thread Dimedrol
Hello All! I'm fixing bugs in a project, written using Wicket (1.2.6?) I need to expand all items on my tree, and I see that expandAll method is missing... So, to expand 1 item I use: final TreePath treePathToExpand = new TreePath(node.getPath()); setExpandedState(treePathToExpand, true); But,