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 2015/10/15 14:51:25 UTC

svn commit: r1708813 - /myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/11-layout/00/labeled-layout.xhtml

Author: lofwyr
Date: Thu Oct 15 12:51:25 2015
New Revision: 1708813

URL: http://svn.apache.org/viewvc?rev=1708813&view=rev
Log:
demo: adding ids

Modified:
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/11-layout/00/labeled-layout.xhtml

Modified: myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/11-layout/00/labeled-layout.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/11-layout/00/labeled-layout.xhtml?rev=1708813&r1=1708812&r2=1708813&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/11-layout/00/labeled-layout.xhtml (original)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/11-layout/00/labeled-layout.xhtml Thu Oct 15 12:51:25 2015
@@ -27,52 +27,52 @@
   <tc:separator/>
 
   <tc:box label="labelLayout is not set (default is flexLeft)">
-    <tc:in required="true" label="In Label"/>
-    <tc:date required="true" label="Date Label"/>
+    <tc:in id="i_d" required="true" label="In Label"/>
+    <tc:date id="d_d" required="true" label="Date Label"/>
   </tc:box>
 
   <tc:box label="labelLayout=&quot;none&quot;">
-    <tc:in required="true" label="In Label" labelLayout="none"/>
-    <tc:date required="true" label="Date Label" labelLayout="none"/>
+    <tc:in id="i_n" required="true" label="In Label" labelLayout="none"/>
+    <tc:date id="d_n" required="true" label="Date Label" labelLayout="none"/>
   </tc:box>
 
   <tc:box label="labelLayout=&quot;flexLeft&quot;">
-    <tc:in required="true" label="In Label" labelLayout="flexLeft"/>
-    <tc:date required="true" label="Date Label" labelLayout="flexLeft"/>
+    <tc:in id="i_fl" required="true" label="In Label" labelLayout="flexLeft"/>
+    <tc:date id="d_fl" required="true" label="Date Label" labelLayout="flexLeft"/>
   </tc:box>
 
   <tc:box label="labelLayout=&quot;flexRight&quot;">
-    <tc:in required="true" label="In Label" labelLayout="flexRight"/>
-    <tc:date required="true" label="Date Label" labelLayout="flexRight"/>
+    <tc:in id="i_fr" required="true" label="In Label" labelLayout="flexRight"/>
+    <tc:date id="d_fr" required="true" label="Date Label" labelLayout="flexRight"/>
   </tc:box>
 
   <tc:box label="labelLayout=&quot;top&quot;">
-    <tc:in required="true" label="In Label" labelLayout="top"/>
-    <tc:date required="true" label="Date Label" labelLayout="top"/>
+    <tc:in id="i_t" required="true" label="In Label" labelLayout="top"/>
+    <tc:date id="d_t" required="true" label="Date Label" labelLayout="top"/>
   </tc:box>
 
   <tc:box label="labelLayout=&quot;segmentLeft&quot;">
     <tc:segmentLayout large="3;9">
-      <tc:in required="true" label="In Label" labelLayout="segmentLeft"/>
-      <tc:date required="true" label="Date Label" labelLayout="segmentLeft"/>
+      <tc:in id="i_sl" required="true" label="In Label" labelLayout="segmentLeft"/>
+      <tc:date id="d_sl" required="true" label="Date Label" labelLayout="segmentLeft"/>
     </tc:segmentLayout>
   </tc:box>
 
   <tc:box label="labelLayout=&quot;segmentRight&quot; (FIXME: height of label breaks layout, try 6;6)">
     <tc:segmentLayout large="9;3">
-      <tc:in required="true" label="In Label" labelLayout="segmentRight"/>
-      <tc:date required="true" label="Date Label" labelLayout="segmentRight"/>
+      <tc:in id="i_sr" required="true" label="In Label" labelLayout="segmentRight"/>
+      <tc:date id="d_sr" required="true" label="Date Label" labelLayout="segmentRight"/>
     </tc:segmentLayout>
   </tc:box>
 
   <tc:box label="labelLayout=&quot;flowLeft&quot; (FIXME: not impleented yet)">
-    <tc:in required="true" label="In Label" labelLayout="flowLeft"/>
-    <tc:date required="true" label="Date Label" labelLayout="flowLeft"/>
+    <tc:in id="i_wl" required="true" label="In Label" labelLayout="flowLeft"/>
+    <tc:date id="d_wl" required="true" label="Date Label" labelLayout="flowLeft"/>
   </tc:box>
 
   <tc:box label="labelLayout=&quot;flowRight&quot; (FIXME: not impleented yet)">
-    <tc:in required="true" label="In Label" labelLayout="flowRight"/>
-    <tc:date required="true" label="Date Label" labelLayout="flowRight"/>
+    <tc:in id="i_wr" required="true" label="In Label" labelLayout="flowRight"/>
+    <tc:date id="d_wr" required="true" label="Date Label" labelLayout="flowRight"/>
   </tc:box>
 
 </ui:composition>