I want to expand some of the tree nodes based on a property in rootNode Datatype. I have tried 'expand' and 'expanded' with value "#{true}" in rich:treeNode and but they seem to have no effect.
<rich:tree id="tree" ajaxSubmitSelection="true" switchType="ajax" styleClass="expand-img-custom"
value="#{ruleDefBackingBean.rootNode}" var="node" showConnectingLines="true">
<rich:treeNode id="node#{node.nodeText}" >
<h:selectBooleanCheckbox styleClass="varChkBox" value="#{node.selected}">
<a4j:support event="onclick" actionListener="#{ruleDefBackingBean.selectNode}" reRender="node#{node.nodeText}" />
</h:selectBooleanCheckbox>
<h:outputText value="#{node.nodeText}" rendered = "#{node.nodeId eq node.categoryId and node.parentNode eq 'true'}" styleClass="legend textBold" style="display:inline;">
<span class="dynatree-icon rule-tree-parent-img" ></span>
</h:outputText>
<h:outputText value="#{node.nodeText}" rendered = "#{node.nodeId ne node.categoryId or node.parentNode ne 'true'}" styleClass="textNormal legend" style="display:inline;">
<span class="dynatree-icon rule-tree-child-img" ></span>
</h:outputText>
</rich:treeNode>
</rich:tree>
What should be done to make it work?
Used adviseNodeOpened
*.java