Author: konstantin.mishin
Date: 2010-07-09 11:55:18 -0400 (Fri, 09 Jul 2010)
New Revision: 17788
Added:
root/examples/iteration-demo/trunk/src/main/webapp/dataGrid.xhtml
Log:
RF-8846
Added: root/examples/iteration-demo/trunk/src/main/webapp/dataGrid.xhtml
===================================================================
--- root/examples/iteration-demo/trunk/src/main/webapp/dataGrid.xhtml
(rev 0)
+++ root/examples/iteration-demo/trunk/src/main/webapp/dataGrid.xhtml 2010-07-09 15:55:18
UTC (rev 17788)
@@ -0,0 +1,66 @@
+<?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>