[ http://issues.apache.org/jira/browse/TOBAGO-197?page=comments#action_12452340 ] Volker Weber commented on TOBAGO-197: -------------------------------------
Have you tryed with Mozilla/Firefox or IE? I found a problem with the marker in IE today, IE ignores the backgroundColor 'lightgray' which is used for the marker. Also the display of the marker did not update when click on it. I have already fixed this on my local machine (at work), i hope i find tomorow the time to recheck and commit this fix. > 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 > > 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
