This content has been marked as final. 
    
Show                 2 replies
    
- 
        1. Re: rich:tree dynamic selection changeharut Mar 17, 2010 3:07 AM (in response to abcd1)Hi Vijay, You should add adviseNodeSelected="#{myBean.adviseNodeSelected}" attribute to your rich:tree, and define corresponding method in the Bean class -- /** 
 * Return true if current node
 * must be selected in the tree.
 *
 * @param tree :UItree
 * @return boolean
 */
 public boolean adviseNodeSelected(UITree tree) {tree.getRowData(); // write business logic identifying if current node is the needed selected one, and return corresponding boolean.... 
 ........................................
 }
- 
        2. Re: rich:tree dynamic selection changeabcd1 Mar 22, 2010 9:09 AM (in response to harut)Thanks Harut it really helps.. 
 
    