8 Replies Latest reply on Jul 6, 2007 7:18 AM by tkalactomo

    rich:tree with simple links?!

    mugwump

      I'm trying to get the most naive implementation of a list with links to run:

      <rich:tree rendered="#{not empty containerHome.instance.children}"
       style="width:300px"
       value="#{containerHome.childTree}"
       var="child"
       nodeFace="#{child.type}"
       switchType="client">
       <rich:treeNode type="child">
       <s:link view="/redsys/structure/#{empty from ? 'Container' : from}.xhtml" value="#{child.name}" id="container">
       <f:param name="containerId" value="#{child.id}"/>
       </s:link>
       </rich:treeNode>
      </rich:tree>
      
      


      The link is rendered correctly, however it does not work, it looks like the click-event gets captured by the tree-select-javascript. Is there a simple way of making a link in a tree work?!

      cheers
      stf