You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2008/01/10 17:15:57 UTC

svn commit: r610828 - in /myfaces/tobago/trunk/example/sandbox/src/main/webapp: tree-editor.jsp tree-menu.jsp tree-select.jsp

Author: lofwyr
Date: Thu Jan 10 08:15:57 2008
New Revision: 610828

URL: http://svn.apache.org/viewvc?rev=610828&view=rev
Log:
fix: state is no longer an attribute of tcs:tree

Modified:
    myfaces/tobago/trunk/example/sandbox/src/main/webapp/tree-editor.jsp
    myfaces/tobago/trunk/example/sandbox/src/main/webapp/tree-menu.jsp
    myfaces/tobago/trunk/example/sandbox/src/main/webapp/tree-select.jsp

Modified: myfaces/tobago/trunk/example/sandbox/src/main/webapp/tree-editor.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/sandbox/src/main/webapp/tree-editor.jsp?rev=610828&r1=610827&r2=610828&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/sandbox/src/main/webapp/tree-editor.jsp (original)
+++ myfaces/tobago/trunk/example/sandbox/src/main/webapp/tree-editor.jsp Thu Jan 10 08:15:57 2008
@@ -33,7 +33,7 @@
       <tc:toolBarCommand action="#{controller.deleteNode}" label="Delete"/>
     </tc:toolBar>
 
-    <tcs:tree state="#{controller.state}" id="tree">
+    <tcs:tree id="tree">
       <!--
       fixme: The helping-node "Root" is required in the moment, has to be removed!
       -->

Modified: myfaces/tobago/trunk/example/sandbox/src/main/webapp/tree-menu.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/sandbox/src/main/webapp/tree-menu.jsp?rev=610828&r1=610827&r2=610828&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/sandbox/src/main/webapp/tree-menu.jsp (original)
+++ myfaces/tobago/trunk/example/sandbox/src/main/webapp/tree-menu.jsp Thu Jan 10 08:15:57 2008
@@ -28,7 +28,7 @@
       <tc:gridLayout margin="10px" rows="*;*;*"/>
     </f:facet>
 
-    <tcs:tree state="#{controller.state}" id="menu"
+    <tcs:tree id="menu"
               showIcons="false"
               showJunctions="false"
               showRootJunction="false"
@@ -58,7 +58,7 @@
       </tcs:treeNode>
     </tcs:tree>
 
-    <tcs:tree state="#{controller.state}" mode="menu">
+    <tcs:tree mode="menu">
       <tcs:treeData value="#{controller.tree}" var="node" id="data">
         <tcs:treeNode label="#{node.userObject.name}"
                       id="template"
@@ -71,7 +71,7 @@
       </tcs:treeData>
     </tcs:tree>
 
-    <tcs:tree state="#{controller.state}" mode="menu">
+    <tcs:tree mode="menu">
       <tcs:treeNode label="Root" expanded="true">
         <tcs:treeNode label="2 Action 1" />
         <tcs:treeNode label="3 Action 2" />

Modified: myfaces/tobago/trunk/example/sandbox/src/main/webapp/tree-select.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/sandbox/src/main/webapp/tree-select.jsp?rev=610828&r1=610827&r2=610828&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/sandbox/src/main/webapp/tree-select.jsp (original)
+++ myfaces/tobago/trunk/example/sandbox/src/main/webapp/tree-select.jsp Thu Jan 10 08:15:57 2008
@@ -28,7 +28,7 @@
       <tc:gridLayout margin="10px" rows="300px;*"/>
     </f:facet>
 
-    <tcs:tree state="#{controller.state}" id="sel"
+    <tcs:tree id="sel"
               showIcons="true"
               showJunctions="true"
               showRootJunction="true"