Author: ilya_shaikovsky
Date: 2008-03-11 13:28:09 -0400 (Tue, 11 Mar 2008)
New Revision: 6717
Added:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/columns.xhtml
Log:
Added: trunk/samples/richfaces-demo/src/main/webapp/richfaces/columns.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/columns.xhtml
(rev 0)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/columns.xhtml 2008-03-11
17:28:09 UTC (rev 6717)
@@ -0,0 +1,20 @@
+<!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:ui="http://java.sun.com/jsf/facelets"
+
xmlns:h="http://java.sun.com/jsf/html"
+
xmlns:f="http://java.sun.com/jsf/core"
+
xmlns:rich="http://richfaces.org/rich">
+<ui:composition template="/templates/main.xhtml">
+ <ui:define name="title">RichFaces - Open Source Rich JSF Components -
Columns Component</ui:define>
+ <ui:define name="body">
+ <rich:tabPanel switchType="server"
value="#{componentNavigator.activeTab}" styleClass="top_tab"
contentClass="content_tab" headerClass="header_tabs_class"
inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+ <rich:tab label="Usage">
+ <ui:include src="/richfaces/columns/usage.xhtml"/>
+ </rich:tab>
+ <ui:include src="/templates/include/tagInfo.xhtml">
+ <ui:param name="path" value="rich/columns"/>
+ </ui:include>
+ </rich:tabPanel>
+ </ui:define>
+</ui:composition>
+</html>