2 Replies Latest reply on Jan 7, 2008 2:31 AM by marx3

    rich:toolBarGroup inside ui:repeat

    marx3

      This code should render conversation stack separated by square, but it doesn't work - no separators rendered. Anybody know how to fix it?

      <rich:toolBar width="90%" itemSeparator="square">
       <rich:toolBarGroup>
       <h:outputText value="#{messages.label_stack}: "/>
       </rich:toolBarGroup>
       <ui:repeat value="#{conversationStack}" var="entry">
       <rich:toolBarGroup>
       <h:commandLink value="#{entry.description}" action="#{entry.select}" immediate="true"/>
       </rich:toolBarGroup>
       </ui:repeat>
      </rich:toolBar>