0 Replies Latest reply on Sep 28, 2010 5:29 PM by scottleff

    h:commandLink title attribute is being ignored by richfaces

    scottleff

      I recently added richfaces 3.3.3 to an existing stable JSF application (using JSP's) because I liked the rich:dropDownMenu's.  After development of the new menus was complete, I noticed that the tooltips that appear when you hover over a link on all my pages were no longer appearing.  I don't want to go through the whole application and start adding rich:tooltip tags.  Is there some configuration step I can do that will give me back the standard tooltip behavior I had before I added richfaces to my application?

       

      Here are the configurations I added to my web.xml:

      <context-param> 

           <param-name>org.richfaces.SKIN</param-name>

           <param-value>blueSky</param-value>

      </context-param>

      <context-param>

           <param-name>org.richfaces.LoadStyleStrategy</param-name>

           <param-value>ALL</param-value>

      </context-param>

      <context-param>

           <param-name>org.richfaces.LoadScriptStrategy</param-name>

           <param-value>ALL</param-value>

      </context-param>

       

       

       

       

       

       

       

       

      <filter>

       

       

           <display-name>RichFaces Filter</display-name>

       

       

           <filter-name>richfaces</filter-name>

       

       

           <filter-class>org.ajax4jsf.Filter</filter-class>

       

       

      </filter>

       

      <filter-mapping>

       

           <filter-name>richfaces</filter-name>

       

       

       

           <servlet-name>Faces Servlet</servlet-name>

       

       

       

           <dispatcher>REQUEST</dispatcher>

       

       

       

           <dispatcher>FORWARD</dispatcher>

       

       

       

           <dispatcher>INCLUDE</dispatcher>

       

       

       

      </filter-mapping>

       

      And here is a snippet of code in my jsp page:

       

       

      <hx:dataTableEx value="#{Account.paidCompensation}" var="comps" width="100%" border="0"

       

           columnClasses="15pct, 15pct, 15pct, 15pct, 15pct, 10pct alignright"

       

       

       

           rowClasses="coloropt7, coloroptwhite"

       

       

       

           headerClass="theadopt7" styleClass="datatable"

       

       

       

           rendered="#{!empty Account.paidCompensation}">

           <

       

      hx:columnEx>

       

       

       

                <f:facet name="header">

       

       

       

                     <h:outputText value="AmountHeader" />

       

       

       

                </f:facet>

       

       

       

                <h:commandLink styleClass="commandLink" id="DetailLink2"

       

       

       

                     action="#{Account.renderAcctCompDetail}"

       

                     actionListener="#{Account.saveSelectedSummary}"

       

                     title="Go to Year-to-Date Detail">

       

       

       

       

       

                     <h:outputText value="#{comps.compAmount}" id="compAmt2" />

       

       

       

                </h:commandLink>

       

       

       

           </hx:columnEx>

       

       

      </hx:dataTableEx>

       

       

      </hx:dataTableEx>

       

      </hx:dataTableEx>

       

       

       

      Browser version = IE8

      Your ideas are greatly appreciated.