4 Replies Latest reply on Mar 28, 2008 9:59 PM by genomeprjct

    rich toolbar group and a4j:repeat/ui:repeat

    genomeprjct

      Hi all & howdy.

      So I've got a seam app, but I'm seeing something weird (I think) with toolbar group.

      I have a data driven navigation menu, and I want to separate each link with a vertical line. This is my code

       <rich:toolBarGroup itemSeparator="line">
       #{projectName}
       <a4j:repeat value="#{navigationManager.navigationComponents}" var="item">
       <s:link view="#{item.viewId}"><h:outputText
       value="#{navigationManager.getKey(item.displayKey)}" /></s:link>
       </a4j:repeat>
       </rich:toolBarGroup>
      


      it properly puts a line between the two listed components, project name and navigation components. is there someway I can throw the line between each navigation item as well?

      thanks,

      John