You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2006/09/08 20:34:17 UTC

svn commit: r441605 - /myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/dojo/splitpanejsfonly.jsp

Author: werpu
Date: Fri Sep  8 11:34:17 2006
New Revision: 441605

URL: http://svn.apache.org/viewvc?view=rev&rev=441605
Log:
renamed the split pane and content pane
to remove the dojo prefix, added a bunch of dojo related attributes
to the split pane which are predefined in the dojo source code
updated the example to reflect the namechange

Modified:
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/dojo/splitpanejsfonly.jsp

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/dojo/splitpanejsfonly.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/dojo/splitpanejsfonly.jsp?view=diff&rev=441605&r1=441604&r2=441605
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/dojo/splitpanejsfonly.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/dojo/splitpanejsfonly.jsp Fri Sep  8 11:34:17 2006
@@ -48,17 +48,17 @@
 			<h:panelGroup style="width: 100%; height: 100%;">
 				<s:dojoInitializer require="dojo.widget.SplitContainer" />
 				<s:dojoInitializer require="dojo.widget.ContentPane" />
-				<s:dojoSplitPane id="split" activeSizing="0" 
+				<s:layoutingSplitPane id="split" activeSizing="0" 
 					style="width: 100%; height: 100%; background: #eeeeee; padding: 10px;" sizerWidth="5">
-					<s:dojoContentPane id="left" sizeShare="20">
+					<s:layoutingContentPane id="left" sizeShare="20">
 						<h:outputFormat value="content1"></h:outputFormat>
 						<h:outputFormat value="content2"></h:outputFormat>
-					</s:dojoContentPane>
-					<s:dojoContentPane id="right">
+					</s:layoutingContentPane>
+					<s:layoutingContentPane id="right">
 						<h:outputFormat value="contentright1"></h:outputFormat>
 						<h:outputFormat value="contentright2"></h:outputFormat>
-					</s:dojoContentPane>
-				</s:dojoSplitPane>
+					</s:layoutingContentPane>
+				</s:layoutingSplitPane>
 			</h:panelGroup>
 
 		</f:view>