[ http://issues.apache.org/jira/browse/TOBAGO-197?page=comments#action_12453436 ] Bernd Bohmann commented on TOBAGO-197: --------------------------------------
With the next version of the maven-war-plugin we are able to include the sources in the war. Unfortunately i didn't know a release date for the maven-war-plugin. You can checkout the source http://myfaces.apache.org/tobago/getting-started.html or view online the demo source with http://myfaces.apache.org/tobago/tobago-example/tobago-example-demo/source-repository.html http://svn.apache.org/viewcvs.cgi/myfaces/tobago/trunk/example/demo > treestate setting marker was not able to display on the selectable leafs and > expand the entire leafs node > --------------------------------------------------------------------------------------------------------- > > Key: TOBAGO-197 > URL: http://issues.apache.org/jira/browse/TOBAGO-197 > Project: MyFaces Tobago > Issue Type: Bug > Affects Versions: 1.0.8 > Environment: JBoss 4.4 > JDK 1.5 > Reporter: Sam Wong > Assigned To: Volker Weber > Fix For: 1.0.9 > > > I would like to display what the user has selected from the tree leafs when > the user has saved the tree leafs onto the database and retrieve it back > from your examples on TobagoDemoController.java > tree = new DefaultMutableTreeNode( > new Node("Root Node", "root")); > tree.insert(new DefaultMutableTreeNode(new Node("Sports", "sports")), 0); > tree.insert(new DefaultMutableTreeNode(new Node("Movies", "movies")), 0); > DefaultMutableTreeNode music = new DefaultMutableTreeNode( > new Node("Music", "music")); > tree.insert(music, 0); > tree.insert(new DefaultMutableTreeNode(new Node("Games", "games")), 0); > MutableTreeNode temp = new DefaultMutableTreeNode( > new Node("Science", "science")); > temp.insert( > new DefaultMutableTreeNode(new Node("Geography", "geography")), 0); > temp.insert( > new DefaultMutableTreeNode(new Node("Mathematics", "math")), 0); > DefaultMutableTreeNode temp2 = new DefaultMutableTreeNode( > new Node("Astronomy", "astro")); > temp2.insert(new DefaultMutableTreeNode(new Node("Education", "edu")), 0); > temp2.insert(new DefaultMutableTreeNode(new Node("Pictures", "pic")), 0); > temp.insert(temp2, 2); > tree.insert(temp, 2); > treeState = new TreeState(); > treeState.addExpandState(tree); > > treeState.addSelection(temp2); > treeState.setMarker(music); > > For examples > Where I set the " treeState.setMarker(temp2)"; When I expand the tree, I did > not see the node leaf was being check? > Also is there a way to expand a complete leafs node by default?? > Thanks. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira
