I am using primefaces 2 and a backing bean to display the tree component in two different facelets pages. On the first page, the tree displays, expands, and I can select items from it just fine.
When I go to the second page, I can expand nodes if I first do not select one. Saying it a different way, I can select nodes after the tree is initially loaded but I am unable to expand any nodes once I select a node. Both pages use the same backing bean and p:tree tag definition as below. The only difference is what is being updated (update attribute). Not sure if that would be the issue but I get no errors in the console.
<p:tree id="orgTree" value="#{userAdminBean.orgTree}" var="node" dynamic="true"
nodeExpandListener="#{userAdminBean.onNodeExpand}" update="orgName,groupName,position"
selectionMode="single" selection="#{userAdminBean.selectedOrgNode}"
nodeSelectListener="#{userAdminBean.nodeSelectedInEditUserScreen}">
<p:treeNode>
<h:outputText value="#{node}"/>
</p:treeNode>
</p:tree>