0 Replies Latest reply on Sep 26, 2010 11:16 AM by jkaijans

    preserving page params with dynamically created richfaces tabs

    jkaijans
      Hi,
      I have a question regarding dynamically generated RichFaces tabs. Problem is that page parameters are not preserved when I click to open a tab
      created like this:

      I have

      xhtml:
               <rich:tabPanel switchType="server" selectedTab="#{foo.selectedTab}" immediate="true" ajaxSingle="true" bypassUpdates="true">
                      <c:forEach items="#{foo.tabs}" var="tab">
                          <rich:tab name="#{tab.id}" switchType="server" action="#{foo.activateTab(tab.id)}">

      pages.xml:
              <param name="selectedTab" value="#{foo.selectedTab}"/>

              <navigation from-action="#{foo.activateTab(tabId)}">
                  <redirect />
              </navigation>

      When I click on a tab, I'm expecting to see selectedTab preserved in the URL, but this is not the case, and I'm trying to figure out why, any ideas?


      Best regards,
      Jukka