Author: amarkhel
Date: 2010-10-29 11:22:24 -0400 (Fri, 29 Oct 2010)
New Revision: 19779
Added:
trunk/examples/input-demo/src/main/webapp/examples/calendar.xhtml
Modified:
trunk/examples/input-demo/src/main/webapp/WEB-INF/faces-config.xml
trunk/examples/input-demo/src/main/webapp/templates/template.xhtml
Log:
add calendar sample
Modified: trunk/examples/input-demo/src/main/webapp/WEB-INF/faces-config.xml
===================================================================
--- trunk/examples/input-demo/src/main/webapp/WEB-INF/faces-config.xml 2010-10-29 15:04:54
UTC (rev 19778)
+++ trunk/examples/input-demo/src/main/webapp/WEB-INF/faces-config.xml 2010-10-29 15:22:24
UTC (rev 19779)
@@ -26,7 +26,12 @@
<navigation-case>
<from-outcome>autocomplete</from-outcome>
<to-view-id>/examples/autocomplete.xhtml</to-view-id>
+ </navigation-case>
+ <navigation-case>
+ <from-outcome>calendar</from-outcome>
+ <to-view-id>/examples/calendar.xhtml</to-view-id>
</navigation-case>
+
<!-- QUnit -->
<navigation-case>
Added: trunk/examples/input-demo/src/main/webapp/examples/calendar.xhtml
===================================================================
--- trunk/examples/input-demo/src/main/webapp/examples/calendar.xhtml
(rev 0)
+++ trunk/examples/input-demo/src/main/webapp/examples/calendar.xhtml 2010-10-29 15:22:24
UTC (rev 19779)
@@ -0,0 +1,41 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!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:h="http://java.sun.com/jsf/html"
+
xmlns:f="http://java.sun.com/jsf/core"
+
xmlns:ui="http://java.sun.com/jsf/facelets"
+
xmlns:calendar="http://richfaces.org/input">
+<!--
+JBoss, Home of Professional Open Source
+Copyright ${year}, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+-->
+ <h:head>
+ <title>Richfaces Calendar Demo</title>
+ </h:head>
+ <h:body>
+ <h:form id="form">
+ <calendar:calendar popup="true"/>
+ <h:commandButton value="submit"></h:commandButton>
+ </h:form>
+ </h:body>
+</html>
Modified: trunk/examples/input-demo/src/main/webapp/templates/template.xhtml
===================================================================
--- trunk/examples/input-demo/src/main/webapp/templates/template.xhtml 2010-10-29 15:04:54
UTC (rev 19778)
+++ trunk/examples/input-demo/src/main/webapp/templates/template.xhtml 2010-10-29 15:22:24
UTC (rev 19779)
@@ -31,6 +31,7 @@
<h:form id="nav">
<p>Input Component's Examples</p>
<ul>
+ <li><h:commandLink value="rich:calendar"
action="calendar" /></li>
<li><h:commandLink value="rich:inplaceInput"
action="inplaceInput" /></li>
<li><h:commandLink value="rich:inplaceSelect"
action="inplaceSelect" /></li>
<li><h:commandLink value="rich:inputNumberSlider"
action="inputNumberSlider" /></li>