Author: abelevich
Date: 2010-07-12 10:53:33 -0400 (Mon, 12 Jul 2010)
New Revision: 17958
Modified:
root/examples/iteration-demo/trunk/src/main/webapp/dataGrid.xhtml
Log:
Modified: root/examples/iteration-demo/trunk/src/main/webapp/dataGrid.xhtml
===================================================================
--- root/examples/iteration-demo/trunk/src/main/webapp/dataGrid.xhtml 2010-07-12 14:49:04
UTC (rev 17957)
+++ root/examples/iteration-demo/trunk/src/main/webapp/dataGrid.xhtml 2010-07-12 14:53:33
UTC (rev 17958)
@@ -1,66 +1,61 @@
-<?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:fn="http://java.sun.com/jsp/jstl/functions"
-
xmlns:h="http://java.sun.com/jsf/html"
-
xmlns:f="http://java.sun.com/jsf/core"
-
xmlns:c="http://java.sun.com/jsp/jstl/core"
-
xmlns:ui="http://java.sun.com/jsf/facelets"
-
xmlns:rich="http://richfaces.org/rich"
-
xmlns:ds="http://richfaces.org/datascroller">
-<!--
-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 DataGrid</title>
- <style>
- .label{
- font-weight:bold;
- }
- </style>
- </h:head>
-
- <h:body>
- <h:form>
- <rich:dataTable value="#{dataBean.employeeList}" var="record"
rows="10">
- <f:facet name="header">
- <h:outputText value="Current date: #{dataBean.date}"/>
- </f:facet>
- <rich:column>
- <h:panelGrid columns="2">
- <h:outputText value="Name:"
styleClass="label"></h:outputText>
- <h:outputText value="#{record.name}" />
- <h:outputText value="Title"
styleClass="label"></h:outputText>
- <h:outputText value="#{record.title}" />
- <h:outputText value="E-mail:"
styleClass="label"></h:outputText>
- <h:outputText value="#{record.EMail}" />
- </h:panelGrid>
- </rich:column>
- <f:facet name="footer">
- <ds:dataScroller />
- </f:facet>
- </rich:dataTable>
- </h:form>
- </h:body>
-</html>
+<!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:it="http://richfaces.org/iteration"
+
xmlns:a4j="http://richfaces.org/a4j"
+ >
+
+<!--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.
+-->
+
+<f:view contentType="text/html" />
+
+<h:head>
+ <title>Richfaces Tables</title>
+</h:head>
+
+<h:body>
+ <h:form id="form1">
+ <it:dataGrid columns="3" var="record"
value="#{dataBean.employeeList}">
+ <f:facet name="header">
+ <h:outputText value="header"/>
+ </f:facet>
+
+ <f:facet name="footer">
+ <h:outputText value="footer"/>
+ </f:facet>
+
+ <f:facet name="сaption">
+ <h:outputText value="caption"/>
+ </f:facet>
+
+ <h:outputText value="#{record.name}"/>
+ <h:outputText value="#{record.title}"/>
+ <h:outputText value="#{record.EMail}"/>
+ </it:dataGrid>
+ </h:form>
+</h:body>
+</html>