Re: Tree table with check box

2010-01-18 Thread prati
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- View this message in context: http://old.nabble.com/Tree-table-with-check-box-tp26080852p27209139.html Sent from the Wicket - User mailing list

Re: Tree table with check box

2010-01-14 Thread prati
tell how to use the TreeFragment to acheive this functionality -- View this message in context: http://old.nabble.com/Tree-table-with-check-box-tp26080852p27164039.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: Tree table with check box

2010-01-14 Thread Major Péter
Hi, check out wicket-tree (http://code.google.com/p/wicket-tree/) and see the example app, I think it will solve your problem. Regards, Peter prati írta: Hi, I am also stuck in similar problem.If you can share your code snippets of how u did that will be of great help. Thanks Pratibha

Re: Tree table with check box

2009-11-12 Thread vela
Hello again, The links and node are added in the TreeFragment class. But the TreeFragment is a private inner class in Treetable, could you tell how to use the TreeFragment to acheive this functionality -- View this message in context: http://old.nabble.com/Tree-table-with-check-box

Re: Tree table with check box

2009-11-03 Thread vela
= name; } public String getName() { return name; } } CheckBoxPanel Page class have correspoding html file -- View this message in context: http://old.nabble.com/Tree-table-with-check-box-tp26080852p26160113.html Sent from the Wicket - User

Re: Tree table with check box

2009-11-03 Thread Per Newgro
You add a single column to your tree. But you overlay the default cell component by the checkboxpanel. So you don't get all the stuff from parent component (Like link and node icon etc). Check TreeTable.TreeFragment for details. You have two opportunities: 1. If you want to add your checkbox

Re: Tree table with check box

2009-11-03 Thread vela
. -- View this message in context: http://old.nabble.com/Tree-table-with-check-box-tp26080852p26191699.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: Tree table with check box

2009-11-02 Thread vela
) { this.name = name; } public String getName() { return name; } public void setName(String name) { this.name = name; } } -- View this message in context: http://old.nabble.com/Tree-table

Re: Tree table with check box

2009-11-02 Thread vela
this message in context: http://old.nabble.com/Tree-table-with-check-box-tp26080852p26157749.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: Tree table with check box

2009-10-30 Thread vela
Hello again, I am getting only the check box and not the tree structure. Instead of markupcontainer i am using panels. Could you telll, how to get the tree structure along with check box in the same column. -- View this message in context: http://old.nabble.com/Tree-table

Re: Tree table with check box

2009-10-30 Thread Per Newgro
Can you be more specific please. How did you created the treetable. How the columns. How the panel etc. Code helps to understand your problem. Cheers Per - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For

Tree table with check box

2009-10-27 Thread sakthi vel
Hello, I have a single column in the tree table. But I need to have check box in the same column along with nodes and not in the seperate column. Can anyone tell how to acheive this.

Re: Tree table with check box

2009-10-27 Thread Per Newgro
sakthi vel schrieb: Hello, I have a single column in the tree table. But I need to have check box in the same column along with nodes and not in the seperate column. Can anyone tell how to acheive this. Use a markupcontainer and add both components to it. Then add container as cell.