0 Replies Latest reply on May 16, 2008 6:41 AM by shadowdz

    c:forEach inside rich:treeNode

    shadowdz

      Hi all,

      I have a 'navigation-tree' on my page which is genrerated by a xml file. In the xml I want to provide the posibility to specify url parameters.

      So in my xhtml i have code like this:

      <rich:tree
       <rich:treeNode
       type="VIEWID">
       <s:link value="#{item.label}" view="#{item.viewID}">
       <c:forEach items="#{item.parameterList}" var="param">
       <f:param name="#{param.name}" value="#{param.value}" />
       </c:forEach>
       </s:link>
       </rich:treeNode>
      </rich:tree>


      The s:link with c:forEach is working outside an rich:tree. Can anybody provide me with a hint wat I can do, or what I have missed in the richfaces documentation?

      By the way the same happens with h:outputLink or h:commandLink