2 Replies Latest reply on Mar 4, 2008 2:27 PM by sebastian.marchano

    toolBar and dropDownMenu with ie6.0.2800.*

      Hi!

      I'm doing a simple toolBar with dropDownMenu, here is an example:

       <rich:toolBar>
       ...
       <rich:dropDownMenu value="Menu" rendered="#{isUserInRole['some_role']}">
       <rich:menuItem submitMode="none">
       <h:outputLink value="first-page.seam"> First </h:outputLink>
       </rich:menuItem>
       <rich:menuItem submitMode="none">
       <h:outputLink value="second-page.seam"> Second </h:outputLink>
       </rich:menuItem>
       </rich:dropDownMenu>
       ...
       </rich:toolBar>
      


      it works fine with firefox and iexplorer 6.0.2900 and better... but it's not working well with iexplorer 6.0.2800 which is very common.

      In ie 6.0.2800, the < div >, the one that appears when the mouse is over the menu, appears at the top of the page, like if the position where relative to the top-left corner of the screen. Playing a while with the generated html, i found that changing the _position_ attribute of the css style in the < div > make it work.

      Is this a solved issue of richfaces?
      How can i fix it in my xhtml source?

      Thanks in advance...