This content has been marked as final. 
    
Show                 1 reply
    
- 
        1. Re: rich:tree clear selectionykravchenko Nov 18, 2007 2:47 PM (in response to jmiguel77)jmiguel77 try to use this 
 TreeState state = (TreeState) tree.getComponentState();
 state.setSelected(null);
 I'm not sure that this method will clear selection visually, but I can guaranty that next time you click the same node the selectionlistener will be fired again (that's what I needed once)
 Anyway try it maybe it works for you
 
    