1 Reply Latest reply on Jan 8, 2008 6:59 PM by nbelaevski

    toolTip in graphicImage

    cstefkivoila

      The tooltip in <h:graphicImage /> does not show.
      Here is my code:

      <h:graphicImage value="/images/note.gif">
       <rich:toolTip value="Test">
       </rich:toolTip>
      </h:graphicImage>


      I am using the version 3.1.3.GA.
      Thanks for your help.

        • 1. Re: toolTip in graphicImage
          nbelaevski

          <h:graphicImage /> doesn't output auto-generated client id by default. Set it explicitly to enable tooltip:

          <h:graphicImage id="image" value="/images/note.gif">
           <rich:toolTip value="Test">
           </rich:toolTip>
          </h:graphicImage>