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 2011/08/10 08:25:45 UTC

svn commit: r1156043 - in /myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tc/treeMenu: ./ treeMenu-simple.xhtml

Author: lofwyr
Date: Wed Aug 10 06:25:45 2011
New Revision: 1156043

URL: http://svn.apache.org/viewvc?rev=1156043&view=rev
Log:
simple example

Added:
    myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tc/treeMenu/
    myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tc/treeMenu/treeMenu-simple.xhtml
      - copied, changed from r1155247, myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tc/tree/tree-select.xhtml

Copied: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tc/treeMenu/treeMenu-simple.xhtml (from r1155247, myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tc/tree/tree-select.xhtml)
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tc/treeMenu/treeMenu-simple.xhtml?p2=myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tc/treeMenu/treeMenu-simple.xhtml&p1=myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tc/tree/tree-select.xhtml&r1=1155247&r2=1156043&rev=1156043&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tc/tree/tree-select.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tc/treeMenu/treeMenu-simple.xhtml Wed Aug 10 06:25:45 2011
@@ -25,14 +25,13 @@
   <tc:page>
     <tc:gridLayoutConstraint width="600px" height="300px"/>
 
-    <tc:tree id="tree" selectable="single" showRoot="true" showRootJunction="true">
+    <tc:treeMenu id="tree" showRoot="true">
       <tc:treeData value="#{tree.tree}" var="node" id="data">
         <tc:treeNode id="template" expanded="true">
-          <tc:treeIndent/>
           <tc:treeLabel value="#{node.userObject.name}"/>
         </tc:treeNode>
       </tc:treeData>
-    </tc:tree>
+    </tc:treeMenu>
 
   </tc:page>
 </f:view>