1 Reply Latest reply on Aug 2, 2007 8:07 PM by sergeysmirnov

    <rich:tab

    basoul

      how can the tabselected be switch when the user click on any of the tab
      my code is below:


      <rich:tabPanel width="100%" switchType="server" id="mainTap" >







      <rich:tab label="Names" reRender="customerNavigationForm" name="n"
      action="#{customerMaintenanceController.selectNamesSummary}">
      <h:outputText value="Names"></h:outputText>
      </rich:tab>

      <rich:tab label="Addresses" reRender="customerNavigationForm" name="a"
      action="#{customerMaintenanceController.selectAddressesSummary}">

      <h:outputText value="Addresses"></h:outputText>
      </rich:tab>


      <rich:tab label="Description" reRender="customerNavigationForm"
      action="#{customerMaintenanceController.selectDescriptionEditor}">
      <h:outputText value="Description"></h:outputText>
      </rich:tab>

      </rich:tabPanel>


      all what im trying to do is when select any of those tabs to navigate to another content page and ofcourse get the tabselected to be highlighted

        • 1. Re: <rich:tab

          It is hard to understand what you mean. If you ask how to load tabpanel with predefined selected tab:
          the rich:tab has 'name' attribute. rich:tabPanel has a 'selectedTab' attribute. It should point to one of the tab name to make this tab selectable on load.