0 Replies Latest reply on Dec 4, 2007 10:39 AM by mail

    rich:toolTip with t:selectOneMenu disabled

    mail

      rich:toolTip with t:selectOneMenu disabled does not work.
      But works when t:selectOneMenu is not disabled.

      WORKS
      <t:selectOneMenu disabled="false" value="#{agreementForm.agrTypeId}">
      <f:selectItems value="#{dropDownData.agrTypeLHM}"/>
      <rich:toolTip value="#{agreementForm.agrTypeDesc}"/>
      </t:selectOneMenu>
      WORKS

      DOES NOT WORK
      <t:selectOneMenu disabled="true" value="#{agreementForm.agrTypeId}">
      <f:selectItems value="#{dropDownData.agrTypeLHM}"/>
      <rich:toolTip value="#{agreementForm.agrTypeDesc}"/>
      </t:selectOneMenu>
      DOES NOT WORK (I don't see the popup).

      Any ideas?