Re: Can i add multiple lines to a node-link in tree?

2008-02-29 Thread Newgro
I added a NRFE https://issues.apache.org/jira/browse/WICKET-1384 https://issues.apache.org/jira/browse/WICKET-1384 Maybe someone will take care for this. Thanks for your taken time Cheers Per -- View this message in context:

Re: Can i add multiple lines to a node-link in tree?

2008-02-29 Thread Matej Knopp
It is not possible to do this with tree table. That is fixed for one line only. -Matej On Fri, Feb 29, 2008 at 11:26 AM, Newgro [EMAIL PROTECTED] wrote: I added a NRFE https://issues.apache.org/jira/browse/WICKET-1384 https://issues.apache.org/jira/browse/WICKET-1384 Maybe someone will

Re: Can i add multiple lines to a node-link in tree?

2008-02-29 Thread Newgro
Hello Matej, is there a cause for fix single line? Or is it only not implemented yet? Thanks Per -- View this message in context: http://www.nabble.com/Can-i-add-multiple-lines-to-a-node-link-in-tree--tp15617892p15756237.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Can i add multiple lines to a node-link in tree?

2008-02-29 Thread Matej Knopp
The problem is that TreeTable doesn't use table for building the actual layout. So it's not something easily fixable. It's on my todo list to rework the TreeTable to use table but I'm kinda short of time right now. -Matej On Fri, Feb 29, 2008 at 11:58 AM, Newgro [EMAIL PROTECTED] wrote: Hello

Re: Can i add multiple lines to a node-link in tree?

2008-02-29 Thread Newgro
I exchanged the tree-table by tree and have the same problem. Can you please provide me a little example how you did this? Cheers Per -- View this message in context: http://www.nabble.com/Can-i-add-multiple-lines-to-a-node-link-in-tree--tp15617892p15756637.html Sent from the Wicket - User

Re: Can i add multiple lines to a node-link in tree?

2008-02-28 Thread Newgro
Thanks for your help, firstly sorry if i brought you to the wrong way - i use a treetable, not a tree. My effects on code below is that the nodes are diplayed only in one row. The second row is not visible. My html: wicket:panel form wicket:id=treeform div class=tree

Re: Can i add multiple lines to a node-link in tree?

2008-02-28 Thread Thomas Kappler
On Thu, Feb 28, 2008 at 10:54 AM, Newgro [EMAIL PROTECTED] wrote: firstly sorry if i brought you to the wrong way - i use a treetable, not a tree. My effects on code below is that the nodes are diplayed only in one row. The second row is not visible. OK, I have never used TreeTable, and I

Re: Can i add multiple lines to a node-link in tree?

2008-02-27 Thread Newgro
Hi Thomas, i got it now with the multilinelabel. The text i add to a node contains an \n. But i only see one row. I experimented a bit with the css, but i can't get the tree node to show me 2 lines. Do you have an idea on that? Cheers Per -- View this message in context:

Re: Can i add multiple lines to a node-link in tree?

2008-02-22 Thread Thomas Kappler
Hi Per, did you try using a wicket.markup.html.basic.MultiLineLabel? If your tree nodes have more than one component, encapsulate them into a Panel and return instances of that from BaseTree.newNodeComponent(String id, IModel model). Cheers, Thomas