Author: abelevich
Date: 2008-01-21 05:19:13 -0500 (Mon, 21 Jan 2008)
New Revision: 5484
Added:
trunk/sandbox/samples/combobox-sample/src/main/webapp/pages/index.xhtml
Log:
Added: trunk/sandbox/samples/combobox-sample/src/main/webapp/pages/index.xhtml
===================================================================
--- trunk/sandbox/samples/combobox-sample/src/main/webapp/pages/index.xhtml
(rev 0)
+++ trunk/sandbox/samples/combobox-sample/src/main/webapp/pages/index.xhtml 2008-01-21
10:19:13 UTC (rev 5484)
@@ -0,0 +1,24 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/2002/REC-xhtml1-20020801/DTD/xhtml1-transitional.dtd">
+
+<html
xmlns="http://www.w3.org/1999/xhtml"
+
xmlns:f="http://java.sun.com/jsf/core"
+
xmlns:h="http://java.sun.com/jsf/html"
+
xmlns:ui="http://java.sun.com/jsf/facelets"
+
xmlns:cb="http://labs.jboss.com/jbossrichfaces/ui/ui/combobox">
+
+
+ <head></head>
+ <body>
+ <f:view>
+ <h:form>
+ <cb:comboBox>
+ <f:selectItem itemValue="Oregon"/>
+ <f:selectItem itemValue="Pennsylvania"/>
+ <f:selectItem itemValue="Rhode Island"/>
+ <f:selectItem itemValue="South Carolina"/>
+ </cb:comboBox>
+
+ </h:form>
+ </f:view>
+ </body>
+</html>
\ No newline at end of file