3 Replies Latest reply on Feb 9, 2009 3:24 PM by nbelaevski

    modalPanel / componentControl and submit Form with IE6

    markus.wiedmer

      Hi

      I'm trying to use a modal panel as Information to tell the user that his form is being submitted.

      Once I click on submit, I use componentControl to make a modalPanel appear.

      It works finde, so far, except in IE6. There, once the modalPanel appears, all Dropdown fields (selectOneMenu) get cleared (empty value). In FF it works just fine.

      the submit button:

      <h:commandButton
       id="send"
       image="images/senden.png"
       styleClass="button" style="margin-left:77px;"
       alt="senden"
       value="#{msgs.submit}"
       action="#{auftragsdatenBean.submitAuftrag111}" />
      


      the componentcontrol and modalpanel:
      <rich:componentControl for="sendform" attachTo="formular111" operation="show" event="onsubmit"/>
       <rich:modalPanel id="sendform" minHeight="100" minWidth="150"
       height="100" width="200">
       <f:facet name="header">
       <h:outputText value="Formular wird gesendet..." />
       </f:facet>
       <f:facet name="controls">
       </f:facet>
       <p>Bitte Warten...</p>
       </rich:modalPanel>


      we're useing richfaces 3.1.5 (can't go higher due to no Java 5 on the app-server)

      Any Ideas how I can solve this?