0 Replies Latest reply on Oct 15, 2007 7:46 AM by luiszerba

    Calendar

    luiszerba

      Hi everyone, I start to use rich facesand I´m having a problem with calendar, the skin isn´t applied to the calendar , I´m using Jdeveloper 10.1.3.3, and the richfaces 3.1.1 , here is my web xml

      <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
       version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee">
       <description>Empty web.xml file for Web Application</description>
       <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>
       <listener>
       <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
       </listener>
       <servlet>
       <servlet-name>Faces Servlet</servlet-name>
       <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
       <load-on-startup>1</load-on-startup>
       </servlet>
       <servlet-mapping>
       <servlet-name>Faces Servlet</servlet-name>
       <url-pattern>/faces/*</url-pattern>
       </servlet-mapping>
       <session-config>
       <session-timeout>35</session-timeout>
       </session-config>
       <mime-mapping>
       <extension>html</extension>
       <mime-type>text/html</mime-type>
       </mime-mapping>
       <mime-mapping>
       <extension>txt</extension>
       <mime-type>text/plain</mime-type>
       </mime-mapping>
       <jsp-config/>
      </web-app>
      


      Here is my simple page
      <f:view>
       <a4j:page id="xpto">
       <h:form>
       <a4j:region>
       <rich:calendar id="calendar" popup="true" value="#{teste.date}"/>
       </a4j:region>
       </h:form>
       </a4j:page>
      </f:view>
      


      Anyone have this problem ?
      Thanks