1 Reply Latest reply on Apr 20, 2007 2:24 PM by sergeysmirnov

    Itereate over panelBarItem

      I'd like to create rich:panelBarItem from a list i've achieved a similar behavior
      using simpleTogglePanel:

      <ui:repeat value="#{tagclasses}" var="class">
       <rich:simpleTogglePanel switchType="client" label="#{class.name}">
       </rich:simpleTogglePanel>
      </ui:repeat>
      

      but when i try it with panelBar it fails:
      <rich:panelBar>
       <ui:repeat value="#{tagclasses}" var="class">
       <rich:panelBarItem label="#{class.name}">
       </rich:panelBarItem>
       </ui:repeat>
      </rich:panelBar>


      I must admit that i've just started using jsf and richfaces so there may be isues that i just failed to see.