Re: Tree with invisible Nodes

2010-03-19 Thread MattyDE
Thanks igor for your Contribution. I did it now with my own TreeNode-Type and my own AbstractTree-Implementation: @Override protected void populateTreeItem(WebMarkupContainer item, int level) { super.populateTreeItem(item, level);

Re: Tree with invisible Nodes

2010-03-18 Thread Igor Vaynberg
filter them in your TreeModel, it should work. you also have to override getChildCount() to return a count without filtered children, and adjust TreeModel#getIndexOfChild() to skip over the filtered children. -igor On Thu, Mar 18, 2010 at 6:19 AM, Martin U ufer.mar...@googlemail.com wrote: Hi