The only thing I noticed was that your addChild identifier is a String: 
richTree.addChild("node1",node1);Whereas the examples and mine use an Integer. 
I recall having some problems with this as well so try: int myIndex = 0;
  | richTree.addChild(new Integer(myIndex++),node1);

It's also probably worth using the TreeNodeImpl rather than rolling your own 
until you get it going.

Cheers,

Damian.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075219#4075219

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075219
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to