4 Replies Latest reply on Jan 29, 2008 2:39 AM by srojas

    rich:calendar

      Hi, i'm new in richfaces.
      I`m developing an alfresco application. Alfresco uses myfaces. I need to use rich:calendar for dates into application. In my web.xml i have include:

      <context-param>
      
       <param-name>org.richfaces.SKIN</param-name>
      
       <param-value>blueSky</param-value>
      
      </context-param>
      
      <filter>
      
       <display-name>RichFaces Filter</display-name>
      
       <filter-name>richfaces</filter-name>
      
       <filter-class>org.ajax4jsf.Filter</filter-class>
      
       </filter>
      
       <filter-mapping>
      
       <filter-name>richfaces</filter-name>
      
       <servlet-name>Faces Servlet</servlet-name>
      
       <dispatcher>REQUEST</dispatcher>
      
       <dispatcher>FORWARD</dispatcher>
      
       <dispatcher>INCLUDE</dispatcher>
      
      </filter-mapping>



      In the jsp page i have include the next lines:
      <%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
      <%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>


      and :
      <rich:calendar popup="true" value="#{DialogManager.bean.fechacom}" />


      The matter is that the calendar appears, but when i push the popup button (mini-calendar), then nothing occurs (the big calendar doesn´t appears).

      Somebody can help me? Can it be caused because the filer configuration?

      Thanks.