2 Replies Latest reply on Mar 22, 2009 11:14 AM by tanmoyc

    Problem in <rich:toolTip> inside <rich:columns> in richfaces

    tanmoyc

      Using new version of rich faces i.e richfaces 3.3.0, tool tip text inside <rich:columns> tag are not getting displayed.

      Code snippet we are using for <rich:columns> tool tip :

      <rich:columns colspan="#{roomVar.mainRoom.colspan[index]}"
      value="#{roomAssignmentController.matchingRoomTableHeaders}"
      rendered="#{roomVar.mainRoom.renderFlag[index] == null}"
      var="headerCol" index="index">

      <h:outputText value="#{roomVar.mainRoom.columnValues[index]}" />

      <rich:toolTip followMouse="true"
      direction="bottom-right" mode="ajax"
      value="Test value" horizontalOffset="5"
      verticalOffset="5" layout="block" style="white-space:nowrap;">
      </rich:toolTip>
      </rich:columns>

      The value attribute in the <rich:toolTip> doesn’t get displayed though a small tool tip box is getting displayed with no text.

      we use the <rich:columns> tag inside <rich:datatable>

      Moving back to the older richfaces jar i.e richfaces 3.2.1 , tool tip text gets displayed properly without any code change.


      Kindly let us know is there any issue with <rich:toolTip> inside <rich:columns> in the new jar or I am doing something wrong which is not compatible with the new rich faces 3.3.0.

        • 1. Re: Problem in <rich:toolTip> inside <rich:columns> in richf

          Hi,
          Try this, If my understanding was wrong , please suggest me..

          <rich:toolTip id="ToolTip" for="dateFieldId" followMouse="true" verticalOffset="20" direction="bottom-right" mode="ajax" horizontalOffset="5" styleClass="toolTipClass"
          layout="block" showDelay="0" >
           <h:outputText value="#{NetworkTO.networkAddress}"/>
           </rich:toolTip>
          <h:outputText id="dateFieldId" value="#{NetworkTO.networkAddress}" />
          


          In this preceding code I had given the ID(dateFieldId) of <h:outputText> in the "for" attribute of <rich:tooltip>.
          Thanks!!

          • 2. Re: Problem in <rich:toolTip> inside <rich:columns> in richf
            tanmoyc

            Hi,

            Since I am using <h:outputText> inside <rich:columns> tag , hence specifying an id for <h:outputText> will give rise to duplicate ids for all the rich:column <h:outputText> elements.

            Is there any way where I can specify dynamic id which will depend on the number of elements in rich:columns and hence will be unique for all <h:outputText> elements inside the <rich:columns>.

            please suggest