1 Reply Latest reply on Sep 24, 2008 10:23 AM by ilya_shaikovsky

    tabPanel with ajax switch type doest not shows a4j:status me

      Hi every one

      i need to show the status message at the time of changing the rich tab.
      But the status message is not showing up on the rich tab panel with ajax switch type.

      i am using rich faces 3.2.2.GA

      This is my sample code

      <a4j:form>
      
       <a4j:status id="status" >
       <f:facet name="start">
       <h:outputText value="please wait"/>
       </f:facet>
       </a4j:status>
      
      <rich:tabPanel switchType="ajax" >
      
      <rich:tab status="status" label="First" actionListener="#{home.switchTocategory}">
       <a4j:include viewId="First.xhtml" />
      </rich:tab>
      
      <rich:tab status="status" label="Second" actionListener="#{home.switchTocategory}">
       <a4j:include viewId="Second.xhtml" />
      </rich:tab>
      
      </rich:tabPanel>
      
      </a4j:form>
      
      


      any help..

      by
      Thiagu.m


        • 1. Re: tabPanel with ajax switch type doest not shows a4j:statu
          ilya_shaikovsky

          checked at livedemo

           <a4j:status startText="start" stopText="stop" id="status"></a4j:status>
           <rich:tabPanel switchType="ajax" >
           <rich:tab label="First" status="status">
           Here is tab #1
           </rich:tab>
           <rich:tab label="Second" disabled="true" status="status">
           Here is tab #2
           </rich:tab>
           <rich:tab label="Third" status="status">
           Here is tab #3
           </rich:tab>
           </rich:tabPanel>
          


          and works fine. start text appears.