- 
        1. Re: rich:tooltip not working in rich:tab facet header (RF4)?giberius Jun 8, 2011 3:25 PM (in response to tdtappe)try to wrap it with <a4j:outputPanel, for me this worked in certain cases. <a4j:outputPanel> "other components" <rich:tooltip showDelay="1000" > #{tekst.tooltipVolgnummer} </rich:tooltip> </a4j:outputPanel> 
- 
        2. Re: rich:tooltip not working in rich:tab facet header (RF4)?tdtappe Jun 9, 2011 2:27 AM (in response to giberius)Tom, I already tried to do so - but without success :-( But giving it another try I encountered some "improvement": When a tab isn't active the tooltip shows up when using an outputPanel. But unfortunately not if a tab is active. Which also has the effect of not hiding the tooltip correctly if hovering over another tooltipped tab. --Heiko 
- 
        3. Re: rich:tooltip not working in rich:tab facet header (RF4)?mn3 Mar 8, 2012 11:07 AM (in response to tdtappe)This work for me: <rich:tab> <f:facet name="header"> <h:outputText value="headerText" title="toolTip" /> </f:facet> </rich:tab> 
- 
        4. Re: rich:tooltip not working in rich:tab facet header (RF4)?jeisen May 29, 2013 11:43 AM (in response to tdtappe)h:outputText has some problem with Tooltip, see https://issues.jboss.org/browse/RF-10833 For me in RF4.3, the following is working. It is important to work with the ids! <rich:tabPanel switchType="ajax"> <rich:tab disabled="false"> <f:facet name="headerActive"> <h:outputText value="Tab Active" id="activeTabText"/> <rich:tooltip target="activeTabText">This is a Active Tab Tooltip</rich:tooltip> </f:facet> <f:facet name="headerInactive"> <h:outputText value="Tab Inactive" id="inActiveTabText"/> <rich:tooltip target="inActiveTabText">This is a Inactive Tab Tooltip</rich:tooltip> </f:facet> <f:facet name="headerDisabled"> <h:outputText value="Tab Disabled" id="disabledTabText"/> <rich:tooltip target="disabledTabText">This is a Disabled Tab Tooltip</rich:tooltip> </f:facet> ... 
 
     
     
    