3 Replies Latest reply on Oct 23, 2015 4:39 AM by michpetrov

    Loop <rich:tab> using c:forEach issues

    kkn

      Hi,

       

      below code used to work with richfaces 3. This is not working with richfaces 4

       

      <rich:tabPanel

             id="persons"

             switchType="client"

             activeItem="#{handlerBean.activePersonTabName}"

        >

             <c:forEach items="#{handlerBean.personsList}" var="person" varStatus="personStatus">

                  <c:set var="personId" value="#{person.person.personId}" scope="request" />

                   <rich:tab

                          id="personTab${personId}${personStatus.index}"

                         name="${person.personLabel}"

                         label="${person.personLabel}"

                         disabled="${person.disabled}"

                   >

                       <ui:include src="PersonGrid.xhtml">

                            <ui:param name="handlerBean" value="#{handlerBean}" />

                            <ui:param name="person" value="#{person}" />

                            <ui:param name="heightSeparator" value="#{heightSeparator}" />

                            <ui:param name="LastPerson" value="#{LastPerson}" />

                            <ui:param name="index" value="${personStatus.index}" />

                       </ui:include>

                    </rich:tab>

               </c:forEach>

        </rich:tabPanel>

       

      I have a rich tabPanel and I use forEach in my jsf app to iterate over the list of people. Tabs load fine for every person with correct data. But while saving the data, none of the value reach to backing bean and none of the setter are invoked. I tried using t dataList (tomahawk dataList) but with that the tabls are not even rendering. I am not sure what is the compatibility issue with richfaces and tomahawk tags. They used to work very well together before

       

      Tried using rich:dataTable but still none of the tabs are rendering.

       

      Can anyone please help me with any alternate solutions? Thanks!