[richfaces-svn-commits] JBoss Rich Faces SVN: r2465 - in trunk/test-applications/jsp/src/main/webapp: DataFilterSlider and 17 other directories.
richfaces-svn-commits at lists.jboss.org
richfaces-svn-commits at lists.jboss.org
Fri Aug 24 06:25:22 EDT 2007
Author: ayanul
Date: 2007-08-24 06:25:22 -0400 (Fri, 24 Aug 2007)
New Revision: 2465
Modified:
trunk/test-applications/jsp/src/main/webapp/Calendar/Calendar.jsp
trunk/test-applications/jsp/src/main/webapp/DataFilterSlider/DFS.jsp
trunk/test-applications/jsp/src/main/webapp/DataScroller/DS.jsp
trunk/test-applications/jsp/src/main/webapp/DataTable/DT.jsp
trunk/test-applications/jsp/src/main/webapp/DragAndDrop/DragAndDrop.jsp
trunk/test-applications/jsp/src/main/webapp/InputNumberSlider/InputNumberSlider.jsp
trunk/test-applications/jsp/src/main/webapp/InputNumberSpinner/InputNumberSpinner.jsp
trunk/test-applications/jsp/src/main/webapp/ModalPanel/ModalPanel.jsp
trunk/test-applications/jsp/src/main/webapp/Paint2D/Paint2D.jsp
trunk/test-applications/jsp/src/main/webapp/Panel/Panel.jsp
trunk/test-applications/jsp/src/main/webapp/Panel/Panel2.jsp
trunk/test-applications/jsp/src/main/webapp/PanelBar/PanelBar.jsp
trunk/test-applications/jsp/src/main/webapp/Separator/Separator.jsp
trunk/test-applications/jsp/src/main/webapp/SimpleTogglePanel/SimpleTogglePanel.jsp
trunk/test-applications/jsp/src/main/webapp/Spacer/Spacer.jsp
trunk/test-applications/jsp/src/main/webapp/SuggestionBox/SuggestionBox.jsp
trunk/test-applications/jsp/src/main/webapp/TabPanel/TabPanel.jsp
trunk/test-applications/jsp/src/main/webapp/TogglePanel/TogglePanel.jsp
trunk/test-applications/jsp/src/main/webapp/ToolBar/ToolBar.jsp
trunk/test-applications/jsp/src/main/webapp/Tree/Tree.jsp
Log:
update
Modified: trunk/test-applications/jsp/src/main/webapp/Calendar/Calendar.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/Calendar/Calendar.jsp 2007-08-24 10:16:36 UTC (rev 2464)
+++ trunk/test-applications/jsp/src/main/webapp/Calendar/Calendar.jsp 2007-08-24 10:25:22 UTC (rev 2465)
@@ -4,7 +4,7 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
-
+<f:view>
<html>
<head>
<title></title>
@@ -118,3 +118,5 @@
</h:form>
</f:subview>
</html>
+</f:view>
+
Modified: trunk/test-applications/jsp/src/main/webapp/DataFilterSlider/DFS.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/DataFilterSlider/DFS.jsp 2007-08-24 10:16:36 UTC (rev 2464)
+++ trunk/test-applications/jsp/src/main/webapp/DataFilterSlider/DFS.jsp 2007-08-24 10:25:22 UTC (rev 2465)
@@ -2,6 +2,7 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+<f:view>
<html>
<head>
<title></title>
@@ -54,7 +55,6 @@
</head>
<f:subview id="dfsID">
-<f:view>
<a4j:form id="form1" reRender="list-body" ajaxSubmit="true"
ignoreDupResponses="true" requestDelay="100">
@@ -140,7 +140,7 @@
<h:commandLink value="Back" action="main"></h:commandLink>
</a4j:form>
+</f:subview>
+</html>
</f:view>
-</f:subview>
-</html>
Modified: trunk/test-applications/jsp/src/main/webapp/DataScroller/DS.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/DataScroller/DS.jsp 2007-08-24 10:16:36 UTC (rev 2464)
+++ trunk/test-applications/jsp/src/main/webapp/DataScroller/DS.jsp 2007-08-24 10:25:22 UTC (rev 2465)
@@ -2,12 +2,12 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+<f:view>
<html>
<head>
<title></title>
</head>
<f:subview id="dataScrollerID">
-<f:view>
<h:form dir="DSform">
<h:dataTable id="dataTableId" value="#{dataScroller.dataTable}"
@@ -27,6 +27,7 @@
<h:commandButton action="#{dataScroller.RestoreArray}" value="RestoreArray" />
<h:commandLink value="Back" action="main"></h:commandLink>
</h:form>
-</f:view>
</f:subview>
</html>
+</f:view>
+
Modified: trunk/test-applications/jsp/src/main/webapp/DataTable/DT.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/DataTable/DT.jsp 2007-08-24 10:16:36 UTC (rev 2464)
+++ trunk/test-applications/jsp/src/main/webapp/DataTable/DT.jsp 2007-08-24 10:25:22 UTC (rev 2465)
@@ -2,12 +2,12 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+<f:view>
<html>
<head>
<title></title>
</head>
<f:subview id="dtID">
-<f:view>
<h:form>
<rich:dataTable value="#{dataScroller.dataTable}" var="dG" id="dGid">
<f:facet name="header">
@@ -69,6 +69,7 @@
` <h:commandLink value="Back" action="main"></h:commandLink>
</h:form>
-</f:view>
</f:subview>
</html>
+</f:view>
+
Modified: trunk/test-applications/jsp/src/main/webapp/DragAndDrop/DragAndDrop.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/DragAndDrop/DragAndDrop.jsp 2007-08-24 10:16:36 UTC (rev 2464)
+++ trunk/test-applications/jsp/src/main/webapp/DragAndDrop/DragAndDrop.jsp 2007-08-24 10:25:22 UTC (rev 2465)
@@ -2,6 +2,7 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+<f:view>
<html>
<head>
<title></title>
@@ -22,7 +23,6 @@
</style>
</head>
<f:subview id="dndID">
-<f:view>
<h:form id="form">
<h:panelGroup id="dragValueText">
<h:outputText value="#{dndBean.dragValue}" />
@@ -185,6 +185,7 @@
</a4j:outputPanel>
<h:commandLink value="Back" action="main"></h:commandLink>
</h:form>
-</f:view>
</f:subview>
</html>
+</f:view>
+
Modified: trunk/test-applications/jsp/src/main/webapp/InputNumberSlider/InputNumberSlider.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/InputNumberSlider/InputNumberSlider.jsp 2007-08-24 10:16:36 UTC (rev 2464)
+++ trunk/test-applications/jsp/src/main/webapp/InputNumberSlider/InputNumberSlider.jsp 2007-08-24 10:25:22 UTC (rev 2465)
@@ -2,13 +2,13 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+<f:view>
<html>
<head>
<link rel="stylesheet"
href="<%=request.getContextPath()%>/styles/styles.css" type="text/css" />
</head>
<f:subview id="inputNumgerSliderID">
-<f:view>
<h:messages></h:messages>
<h:form>
<h:outputText value="Event:"></h:outputText>
@@ -114,6 +114,7 @@
<h:commandLink value="Back" action="main"></h:commandLink>
</h:form>
-</f:view>
</f:subview>
</html>
+</f:view>
+
Modified: trunk/test-applications/jsp/src/main/webapp/InputNumberSpinner/InputNumberSpinner.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/InputNumberSpinner/InputNumberSpinner.jsp 2007-08-24 10:16:36 UTC (rev 2464)
+++ trunk/test-applications/jsp/src/main/webapp/InputNumberSpinner/InputNumberSpinner.jsp 2007-08-24 10:25:22 UTC (rev 2465)
@@ -2,13 +2,13 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j" %>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich" %>
+<f:view>
<html>
<head>
<title></title>
<link rel="stylesheet" href="<%=request.getContextPath()%>/styles/styles.css" type="text/css" />
</head>
<f:subview id="inputNumgerSpinnerID">
- <f:view>
<h:form>
<h:messages></h:messages>
<h:outputText value="Event:"></h:outputText>
@@ -79,6 +79,7 @@
<h:commandButton action="#{inputNumberSpinner.doStyles}" value="#{inputNumberSpinner.btnLabel}" />
</h:panelGrid> <h:commandLink value="Back" action="main"></h:commandLink>
</h:form>
- </f:view>
</f:subview>
</html>
+</f:view>
+
Modified: trunk/test-applications/jsp/src/main/webapp/ModalPanel/ModalPanel.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/ModalPanel/ModalPanel.jsp 2007-08-24 10:16:36 UTC (rev 2464)
+++ trunk/test-applications/jsp/src/main/webapp/ModalPanel/ModalPanel.jsp 2007-08-24 10:25:22 UTC (rev 2465)
@@ -2,6 +2,7 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
+<f:view>
<html>
<head>
<title></title>
@@ -9,7 +10,6 @@
href="<%=request.getContextPath()%>/styles/styles.css" type="text/css" />
</head>
<f:subview id="modalPanel">
-<f:view>
<h:form id="MPform">
<rich:modalPanel id="MPid"
@@ -75,6 +75,7 @@
<h:commandLink value="Back" action="main"></h:commandLink>
</h:form>
-</f:view>
</f:subview>
</html>
+</f:view>
+
Modified: trunk/test-applications/jsp/src/main/webapp/Paint2D/Paint2D.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/Paint2D/Paint2D.jsp 2007-08-24 10:16:36 UTC (rev 2464)
+++ trunk/test-applications/jsp/src/main/webapp/Paint2D/Paint2D.jsp 2007-08-24 10:25:22 UTC (rev 2465)
@@ -2,13 +2,14 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+<f:view>
<html>
<head>
<title></title>
<link rel="stylesheet" href="<%=request.getContextPath()%>/styles/styles.css" type="text/css" />
</head>
<f:subview id="paint2D">
-<f:view>
+
<h:form>
<rich:paint2D id="paint2d" paint="#{paint2D.paint}" data="#{paintData}" width="#{paint2D.width}" height="#{paint2D.height}" align="#{paint2D.align}"
hspace="#{paint2D.hspace}" vspace="#{paint2D.vspace}" bgcolor="#{paint2D.bgcolor}" format="#{paint2D.format}" title="#{paint2D.title}"
@@ -88,6 +89,7 @@
<h:commandLink value="Back" action="main"></h:commandLink>
</h:form>
-</f:view>
+
</f:subview>
</html>
+</f:view>
Modified: trunk/test-applications/jsp/src/main/webapp/Panel/Panel.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/Panel/Panel.jsp 2007-08-24 10:16:36 UTC (rev 2464)
+++ trunk/test-applications/jsp/src/main/webapp/Panel/Panel.jsp 2007-08-24 10:25:22 UTC (rev 2465)
@@ -2,12 +2,12 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j" %>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich" %>
+<f:view>
<html>
<head>
<title></title>
</head>
<f:subview id="panelID">
- <f:view>
<h:form>
<h:messages></h:messages>
<h:outputText value="Panel 1, rendered: #{!panel.rendered}; Panel 2, rendered #{panel.rendered};"></h:outputText>
@@ -63,6 +63,7 @@
<br/>
<h:commandLink value="Back" action="main"></h:commandLink>
</h:form>
- </f:view>
</f:subview>
</html>
+</f:view>
+
Modified: trunk/test-applications/jsp/src/main/webapp/Panel/Panel2.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/Panel/Panel2.jsp 2007-08-24 10:16:36 UTC (rev 2464)
+++ trunk/test-applications/jsp/src/main/webapp/Panel/Panel2.jsp 2007-08-24 10:25:22 UTC (rev 2465)
@@ -2,6 +2,7 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+<f:view>
<html>
<head>
<title></title>
@@ -51,7 +52,6 @@
</style>
</head>
<f:subview id="Panel2ID">
-<f:view>
<h:panelGrid columnClasses="panel" border="0" columns="3">
<rich:panel styleClass="top">
@@ -149,6 +149,7 @@
<h:form>
<h:commandLink value="Back to Panel" action="BackP"></h:commandLink>
</h:form>
-</f:view>
</f:subview>
</html>
+</f:view>
+
Modified: trunk/test-applications/jsp/src/main/webapp/PanelBar/PanelBar.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/PanelBar/PanelBar.jsp 2007-08-24 10:16:36 UTC (rev 2464)
+++ trunk/test-applications/jsp/src/main/webapp/PanelBar/PanelBar.jsp 2007-08-24 10:25:22 UTC (rev 2465)
@@ -2,13 +2,13 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+<f:view>
<html>
<head>
<title></title>
<link rel="stylesheet" href="<%=request.getContextPath()%>/styles/styles.css" type="text/css" />
</head>
<f:subview id="panelBarID">
-<f:view>
<h:messages></h:messages>
<h:form>
<rich:panelBar id="pBId" height="#{panelBar.height}"
@@ -66,6 +66,7 @@
</h:panelGrid>
<h:commandLink value="Back" action="main"></h:commandLink>
</h:form>
-</f:view>
</f:subview>
</html>
+</f:view>
+
Modified: trunk/test-applications/jsp/src/main/webapp/Separator/Separator.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/Separator/Separator.jsp 2007-08-24 10:16:36 UTC (rev 2464)
+++ trunk/test-applications/jsp/src/main/webapp/Separator/Separator.jsp 2007-08-24 10:25:22 UTC (rev 2465)
@@ -2,13 +2,13 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+<f:view>
<html>
<head>
<title></title>
<link rel="stylesheet" href="<%=request.getContextPath()%>/styles/styles.css" type="text/css" />
</head>
<f:subview id="separatorID">
-<f:view>
<h:form>
<h:messages></h:messages>
<h:outputText value="Event:"></h:outputText>
@@ -68,6 +68,7 @@
<h:commandLink value="Back" action="main"></h:commandLink>
</h:form>
-</f:view>
</f:subview>
</html>
+</f:view>
+
Modified: trunk/test-applications/jsp/src/main/webapp/SimpleTogglePanel/SimpleTogglePanel.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/SimpleTogglePanel/SimpleTogglePanel.jsp 2007-08-24 10:16:36 UTC (rev 2464)
+++ trunk/test-applications/jsp/src/main/webapp/SimpleTogglePanel/SimpleTogglePanel.jsp 2007-08-24 10:25:22 UTC (rev 2465)
@@ -2,6 +2,7 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+<f:view>
<html>
<head>
<title></title>
@@ -19,7 +20,6 @@
<link rel="stylesheet" href="<%=request.getContextPath()%>/styles/styles.css" type="text/css" />
</head>
<f:subview id="simpleTogglePanelID">
-<f:view>
<h:messages></h:messages>
<h:form>
@@ -100,6 +100,7 @@
<h:commandLink value="Back" action="main"></h:commandLink>
</h:form>
-</f:view>
</f:subview>
</html>
+</f:view>
+
Modified: trunk/test-applications/jsp/src/main/webapp/Spacer/Spacer.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/Spacer/Spacer.jsp 2007-08-24 10:16:36 UTC (rev 2464)
+++ trunk/test-applications/jsp/src/main/webapp/Spacer/Spacer.jsp 2007-08-24 10:25:22 UTC (rev 2465)
@@ -2,6 +2,7 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+<f:view>
<html>
<head>
<title></title>
@@ -17,7 +18,6 @@
</style>
</head>
<f:subview id="spacerID">
-<f:view>
<h:messages></h:messages>
<h:form>
@@ -58,6 +58,7 @@
<h:commandLink value="Back" action="main"></h:commandLink>
</h:form>
-</f:view>
</f:subview>
</html>
+</f:view>
+
Modified: trunk/test-applications/jsp/src/main/webapp/SuggestionBox/SuggestionBox.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/SuggestionBox/SuggestionBox.jsp 2007-08-24 10:16:36 UTC (rev 2464)
+++ trunk/test-applications/jsp/src/main/webapp/SuggestionBox/SuggestionBox.jsp 2007-08-24 10:25:22 UTC (rev 2465)
@@ -2,8 +2,8 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
+<f:view>
<html>
-<f:view>
<f:subview id="suggestionBoxID">
<h:form id="suggestionbox_form">
@@ -127,5 +127,6 @@
<h:commandLink value="Back" action="main"></h:commandLink>
</h:form>
</f:subview>
+</html>
</f:view>
-</html>
+
Modified: trunk/test-applications/jsp/src/main/webapp/TabPanel/TabPanel.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/TabPanel/TabPanel.jsp 2007-08-24 10:16:36 UTC (rev 2464)
+++ trunk/test-applications/jsp/src/main/webapp/TabPanel/TabPanel.jsp 2007-08-24 10:25:22 UTC (rev 2465)
@@ -2,6 +2,8 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+<f:view>
+
<html>
<head>
<title></title>
@@ -11,7 +13,6 @@
<link rel="stylesheet" href="<%=request.getContextPath()%>/styles/styles.css" type="text/css" />
</head>
<f:subview id="tabPanelID">
-<f:view>
<h:form>
<rich:tabPanel id="tabPanelId" headerAlignment="#{tabPanel.headerAlignment}" width="#{tabPanel.width}" height="#{tabPanel.height}"
rendered="#{tabPanel.rendered}" title="#{tabPanel.title}" switchType="#{tabPanel.switchType}" headerSpacing="#{tabPanel.headerSpacing}"
@@ -109,6 +110,7 @@
</h:panelGrid>
<h:commandLink value="Back" action="main"></h:commandLink>
</h:form>
-</f:view>
</f:subview>
</html>
+</f:view>
+
Modified: trunk/test-applications/jsp/src/main/webapp/TogglePanel/TogglePanel.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/TogglePanel/TogglePanel.jsp 2007-08-24 10:16:36 UTC (rev 2464)
+++ trunk/test-applications/jsp/src/main/webapp/TogglePanel/TogglePanel.jsp 2007-08-24 10:25:22 UTC (rev 2465)
@@ -2,11 +2,11 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
+<f:view>
<html>
<head>
<title></title>
</head>
-<f:view>
<f:subview id="togglePanel">
<h:messages></h:messages>
@@ -174,5 +174,6 @@
<ui:debug hotkey="L"></ui:debug>
</h:form>
</f:subview>
+</html>
</f:view>
-</html>
+
Modified: trunk/test-applications/jsp/src/main/webapp/ToolBar/ToolBar.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/ToolBar/ToolBar.jsp 2007-08-24 10:16:36 UTC (rev 2464)
+++ trunk/test-applications/jsp/src/main/webapp/ToolBar/ToolBar.jsp 2007-08-24 10:25:22 UTC (rev 2465)
@@ -2,13 +2,14 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+<f:view>
<html>
<head>
<title></title>
<link rel="stylesheet" href="<%=request.getContextPath()%>/styles/styles.css" type="text/css" />
</head>
<f:subview id="toolBarID">
-<f:view>
+
<h:form>
<rich:toolBar id="toolBarId" width="#{toolBar.width}"
height="#{toolBar.height}" rendered="#{toolBar.rendered}"
@@ -61,6 +62,7 @@
</h:panelGrid>
<h:commandLink value="Back" action="main"></h:commandLink>
</h:form>
-</f:view>
+
</f:subview>
</html>
+</f:view>
Modified: trunk/test-applications/jsp/src/main/webapp/Tree/Tree.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/Tree/Tree.jsp 2007-08-24 10:16:36 UTC (rev 2464)
+++ trunk/test-applications/jsp/src/main/webapp/Tree/Tree.jsp 2007-08-24 10:25:22 UTC (rev 2465)
@@ -2,12 +2,13 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+<f:view>
<html>
<head>
<title></title>
</head>
<f:subview id="treeID">
-<f:view>
+
<h:form>
<rich:tree id="tree" switchType="#{bean.switchType}"
value="#{bean.data}" var="data"
@@ -118,6 +119,7 @@
<rich:spacer></rich:spacer>
<h:commandLink value="Back" action="main"></h:commandLink>
</h:form>
-</f:view>
+
</f:subview>
</html>
+</f:view>
More information about the richfaces-svn-commits
mailing list