2 Replies Latest reply on Jul 9, 2008 1:38 PM by dmartfw

    DropDownMenu has wrong height after rerendering (IE only)

    jiri.pejchal

      DropDownMenu is heigher after rerendering in IE7. I've made a Jira entry for that: http://jira.jboss.com/jira/browse/RF-3790

      Is it a bug or am I doing something wrong?

      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
      <f:view xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:a4j="http://richfaces.org/a4j"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:rich="http://richfaces.org/rich">



      < /head>

      <h:form>
      <rich:toolBar>
      <rich:dropDownMenu id="dropMenuFile" value="File">
      <rich:menuItem value="Open"></rich:menuItem>
      </rich:dropDownMenu>
      </rich:toolBar>
      <h:selectBooleanCheckbox value="true">
      <a4j:support event="onmousedown"
      reRender="dropMenuFile">
      </a4j:support>
      </h:selectBooleanCheckbox>
      </h:form>


      </f:view>