2 Replies Latest reply on Nov 8, 2008 9:52 PM by pbaker01

    rich:toolTip direction=

    pbaker01

      Using: Richfaces 3.3.0 SNAPSHOT 2008-08-11

      I'm having problems with rich:toolTip using direction="auto". When I use direction="auto" the tooltip is not displayed at all. When I remove direction="auto" or use one of the other documented ways:

      ...Possible values are "top-right", "top-left", "bottom-right", "bottom-left", "auto". Default value is "bottom-right"

      then the tooltip works.

      I also have a problem using tooltip within a ExtendedDataTable. When I use one of the fixed methods: (i.e. "bottom-left") then the tooltip is cutoff at the table boundry.

      See image:
      http://picbite.com/image/6997wvtos/

      Column entry for RichDataTable:
      <rich:column id="reason" width="70px" label="Reason">
       <f:facet name="header">
       <h:outputText value="Reason" />
       </f:facet>
       <rich:panel id="updReason" styleClass="PNLp0bI"
       ondblclick="showdisp('reasonModal','#{item.reasonEscapeFormatted}','#{item.id}');">
       <h:outputText value="Update" styleClass="LnkNormal" />
       <rich:toolTip styleClass="ToolTipSty"
       showDelay="1000" disabled="#{item.reasonToolTipDisabled}" zorder="1000">
       <h:outputText value="#{item.reasonHtmlFormatted}"
       escape="false" />
       </rich:toolTip>
       </rich:panel>
      </rich:column>