1 2 Previous Next 17 Replies Latest reply on May 11, 2011 6:51 AM by ozeeezee

    rich:popupPanel not 'popping up' in IE

    cmathrusse

      I'm using RichFaces 4 M5. I have a few pages that utilize the rich:popupPanel without any problem in Safari, Chrome and FireFox. But when I run my application in IE the popupPanel doesn't 'pop up'. Is there something that I need to enable or javascript that I need to add to get it to work?

       

       

       

          <script>

                    function showVisaPopup() {

                  #{rich:component('visa-popup-panel')}.show();

                    }          

          </script>

       

        <rich:popupPanel id="visa-popup-panel" modal="true" autosized="true">

            .....

        </rich:popupPanel>

       

       

      Called from here:

       

                        <h:panelGrid>

                            <h:selectOneMenu

                                valueChangeListener="#{application.processSelectValueChange}">

                            <f:selectItems value="#{programIntensityController.programIntensities}" />

                                <a4j:ajax oncomplete="#{iiiApplication.showRestrictionDialog ? 'showVisaPopup()' : ''}"/>

       

                            </h:selectOneMenu>

                </h:panelGrid>

       

       

      Thanks for the help...

        1 2 Previous Next