0 Replies Latest reply on Apr 29, 2008 10:49 AM by siladi

    Width Bug: rich:toolTip + h:selectOneMenu under rich panel

    siladi

      Hi,
      My code contains a rich:panel with several components, one of them is a rich:tooltip defined with event="onclick".
      The bug occurs once I click the image and get the tooltip, then the dropdown list suddenly expands itself.

      My Code:

      <rich:panel>
      <rich:toolTip event="onclick" mode="client" direction="top-right" styleClass="help">

      <h:outputText value="some Value" />

      </rich:toolTip>
      <h:graphicImage url="images/question.jpg" />
      <h:outputText value="Some Text" />

      <h:selectOneMenu style="margin-left: 3px; width: 100%"
      value="Some Value">
      <f:selectItems value="My Selection List" />
      </h:selectOneMenu>
      </rich:panel>


      Please advise