0 Replies Latest reply on Jun 3, 2010 4:48 AM by vdimitriev

    rich:calendar doesnt popup

    vdimitriev

      Hi everybody,

       

      I have a problem when i try to use <rich:calendar popup="true"> control when i use on jboss server 4.2.3.GA and richfaces 3.2.2.GA, it doesn't popup. However when i use it the same page on apache-tomcat 6.0.20  with richfaces 3.2.1.GA it works fine. Is there any problem with versions or i'm something missing, Tnx. This is the code:

       

      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
      <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:ui="http://java.sun.com/jsf/facelets"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:rich="http://richfaces.org/rich"
          xmlns:a4j="http://richfaces.org/a4j">

       

        <head>
          <title>RichFaces</title>
        </head>

       

        <f:view>
        <body>
       
            <rich:panel>
                <f:facet name="header">
                    JBoss RichFaces
                </f:facet>
               
                <h:panelGrid columns="1">
                    <a4j:outputPanel>
                        <rich:calendar popup="true"></rich:calendar>
                    </a4j:outputPanel>
                </h:panelGrid>
            </rich:panel>


        </body>
        </f:view>
      </html>