Re: Checkbox tree component

2012-03-06 Thread javanrell
Hi all, I made some changes based on the CheckBoxIconPanel.java posted by Doug, basically I added behavior to update all parents or childrens when we check or uncheck a node: * When we check a node, we verify all its brothers, if they are all checked then we check its parent and recursively. *

Re: Checkbox tree component

2010-01-20 Thread prati
Hi i also am having same kind of problem. I got checkboxes in tree panel ,how to iterate over the selected nodes on checkbox click. Thanks Partibha Edi wrote: I am not able to configure the above example Doug. Could you give me .war file. please thanks and regards, edi Doug

Re: Checkbox tree component

2009-04-17 Thread CrocodileShoes
Hi guys, I've been fighting with trees for a week now and nearly have it doing what I require. However there is one thing I can't figure out. -My tree is build using data from an external source. -When I click a checkbox in the tree my tree model is completely restructured based upon data from

Re: Checkbox tree component

2009-04-17 Thread Edi
Hello Doug, I am not able to configure the above example Doug. Could you give me .war file. please thanks and regards, edi -- View this message in context: http://www.nabble.com/Checkbox-tree-component-tp13433102p23109331.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Checkbox tree component

2009-04-16 Thread Edi
I am not able to configure the above example Doug. Could you give me .war file. please thanks and regards, edi Doug Leeper wrote: If the tree is pre-loaded, it is easier. When the checkbox is selected, iterate through the children nodes and set its state to selected. The dynamically

Re: Checkbox tree component

2008-07-07 Thread vishy_sb
Hey Doug, I was able to get the check boxes to work. Thanks for your help on that. However there is another problem that I am not able to get to work. I have created another panel with a checkbox tree in it and i want that panel to show only when I check one of the child nodes in my main

Re: Checkbox tree component

2008-07-07 Thread Doug Leeper
I am sure there are a couple of ways to do this. First thing that comes to mind is to override the Panel2.isVisible() method and return true if there are any nodes selected in CBTree1. for instance: Panel checkBoxPanel2 = new Panel( checkBoxPanel2 ) { public boolean isVisible() {

Re: Checkbox tree component

2008-06-28 Thread Doug Leeper
If the tree is pre-loaded, it is easier. When the checkbox is selected, iterate through the children nodes and set its state to selected. The dynamically loaded is alot trickier...as you would have to load the tree from the selected node and then iterate and set the children notes to selected.

Re: Checkbox tree component

2008-06-26 Thread vishy_sb
Hey Doug, I am fairly new to wicket. I am trying to use the checkbox tree component and it seems to be working well. However I would like to check or uncheck all the child nodes if the parent node is selected(i.e. if the check box in front of the parent node is checked or unchecked). Kindly let

Re: Checkbox tree component

2008-06-26 Thread Doug Leeper
It depends. Are you building the entire tree up front or are you building the child nodes dynamically (i.e. when the parent node is selected/expanded)? -- View this message in context: http://www.nabble.com/Checkbox-tree-component-tp13433102p18147561.html Sent from the Wicket - User mailing

Re: Checkbox tree component

2008-06-26 Thread vishy_sb
Well currently I am testing the tree using a model which creates the entire tree up front... however for the final implementation I would be building the child nodes dynamically hence I guess I would be using both of them Thanks for the quick reply Doug Leeper wrote: It

Re: Checkbox tree component

2007-12-10 Thread Benjamin Keil
Doug Leeper wrote: When does this occur? - the first time the page is displayed - after you do some user interaction? if so, are you using Ajax in the user interaction? This happens on the initial loading of the page, and I tried setting the CheckType to Ajax and to Regular. It

Re: Checkbox tree component

2007-12-07 Thread Mats Norén
Doug, great work! Can I just ask you a question, what does your implementation of the CategoryTreeModel look like? I've been trying all sorts of approaches for doing a similar category tree but I've never liked / got the model approach to work in a nice fashion. :) /Regards Mats On Oct 27, 2007

Re: Checkbox tree component

2007-12-05 Thread Benjamin Keil
Hello All! This CheckBox tree is very cool. But I'm having some strange interactions with the web server: when I run under Jetty everything goes smoothly, but when I deploy to tomcat, I get a bunch of unrendered component exceptions for the component with id checkbox and whose class is some

Re: Checkbox tree component

2007-12-05 Thread Benjamin Keil
Thanks for the hint, but, yes the wicket jars are the latest ones: wicket-1.3.0-rc1.jar wicket-datetime-1.3.0-rc1.jar wicket-extensions-1.3.0-rc1.jar wicket-ioc-1.3.0-rc1.jar wicket-spring-1.3.0-rc1.jar wicket-spring-annot-1.3.0-rc1.jar And it's the same set of jars under Jetty. So, I'm still

Re: Checkbox tree component

2007-12-05 Thread Doug Leeper
Could you post the stacktrace? -- View this message in context: http://www.nabble.com/Checkbox-tree-component-tf4699092.html#a14186249 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail:

Re: Checkbox tree component

2007-11-16 Thread dstruck
Doug, thanks for putting this together. David Doug Leeper wrote: Ok here it is. I have also included my use of it. While it won't compile for you...you will at least see how I have used it. http://www.nabble.com/file/p13439520/CheckBoxIconPanel.html CheckBoxIconPanel.html

Re: Checkbox tree component

2007-11-16 Thread Doug Leeper
Glad to have helped! -- View this message in context: http://www.nabble.com/Checkbox-tree-component-tf4699092.html#a13804839 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL

Re: Checkbox tree component

2007-10-26 Thread Doug Leeper
I was just about to tackle this. If I get something together I will forward the code. - Doug -- View this message in context: http://www.nabble.com/Checkbox-tree-component-tf4699092.html#a13436155 Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Checkbox tree component

2007-10-26 Thread Doug Leeper
Ok here it is. I have also included my use of it. While it won't compile for you...you will at least see how I have used it. http://www.nabble.com/file/p13439520/CheckBoxIconPanel.html CheckBoxIconPanel.html http://www.nabble.com/file/p13439520/CheckBoxIconPanel.java CheckBoxIconPanel.java