3 Replies Latest reply on Feb 2, 2010 8:13 AM by umb

    ModalPanel in IE6

      Hi,
      we are using RichFaces 3.3.2 SR1 libraries, and IE6 doesn't show ModalPanels.
      Anyone knows a solution for this problem?

       

      Thanx

        • 1. Re: ModalPanel in IE6
          ilya_shaikovsky
          in which other browsers you tried? If there are any js errors? And pelase show your code.
          • 2. Re: ModalPanel in IE6

            ModalPanels work correctly in IE7 and Firefox 3.5.*

            There aren't js errors in IE6.

             

            This is my panel:

             

            <rich:modalPanel id="wait" width="200" height="80" moveable="true" resizeable="false">

                 <f:facet name="header">

                      <h:outputText value="Attendere" />

                 </f:facet>

                 <h:outputText value="Elaborazione in corso..." />

            </rich:modalPanel>

             

             

             

            And js function witch shows panel:

             

             

            function showWait() {

             

                 Richfaces.showModalPanel('wait');

            }

             

            Thank You

            • 3. Re: ModalPanel in IE6

              Solved.

              The problem was "position: relative;" for modal panels wrapper <div> in my css:

               

              .rich-modalpanel {

                   overflow: auto;

                   position: relative;

              }