8 Replies Latest reply on May 3, 2011 1:59 AM by trai

    Issue with Popup Modal Window with richfaces 4.0

    trai

      Hello,

           Here's the code directly from the richfaces 4.0 showcase that I am using to learn the popup model window.  When I run it, it give me a javascript error saying "RichFaces is undefined". Can you please tell me why is not recognizing the RichFaces? What I am missing here?

      <html xmlns="http://www.w3.org/1999/xhtml"

               xmlns:h="http://java.sun.com/jsf/html"

               xmlns:f="http://java.sun.com/jsf/core"

               xmlns:ui="http://java.sun.com/jsf/facelets"

               xmlns:a4j="http://richfaces.org/a4j"

               xmlns:rich="http://richfaces.org/rich">

           <h:body>

                <h:commandButton value="Call the popup">

                     <rich:componentControl target="popup" operation="show" />

                </h:commandButton>      

       

                <rich:popupPanel id="popup" modal="true" resizeable="true" onmaskclick="#{rich:component('popup')}.hide()">

                     <f:facet name="header">

                          <h:outputText value="Simple popup panel" />

                     </f:facet>

       

                     <f:facet name="controls">

                          <h:outputLink value="#" onclick="#{rich:component('popup')}.hide(); return false;">X</h:outputLink>

                     </f:facet>

                     <p>You can also check and trigger events if the use clicks outside of the panel.</p>

                     <p>In this example clicking outside closes the panel.</p>

                </rich:popupPanel>                                                          

           </h:body>

      </html>

      Thanks.

      TR