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 2016/09/30 15:33:16 UTC

svn commit: r1762925 - /myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/40-test/8000-sheet/10-sheet-types/sheet-types.xhtml

Author: lofwyr
Date: Fri Sep 30 15:33:16 2016
New Revision: 1762925

URL: http://svn.apache.org/viewvc?rev=1762925&view=rev
Log:
labelLayout="skip", to have no extra space at bottom

Modified:
    myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/40-test/8000-sheet/10-sheet-types/sheet-types.xhtml

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/40-test/8000-sheet/10-sheet-types/sheet-types.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/40-test/8000-sheet/10-sheet-types/sheet-types.xhtml?rev=1762925&r1=1762924&r2=1762925&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/40-test/8000-sheet/10-sheet-types/sheet-types.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/40-test/8000-sheet/10-sheet-types/sheet-types.xhtml Fri Sep 30 15:33:16 2016
@@ -27,19 +27,19 @@
             rows="10">
     <tc:columnSelector/>
     <tc:column label="&lt;tc:out>" id="c_out">
-      <tc:out value="#{luminary.name}"/>
+      <tc:out value="#{luminary.name}" labelLayout="skip"/>
     </tc:column>
     <tc:column label="&lt;tc:out>" align="right" id="c_out_r">
-      <tc:out value="#{luminary.name}"/>
+      <tc:out value="#{luminary.name}" labelLayout="skip"/>
     </tc:column>
     <tc:column id="c_not_rendered" rendered="false">
-      <tc:out value="#{luminary.name}"/>
+      <tc:out value="#{luminary.name}" labelLayout="skip"/>
     </tc:column>
     <tc:column label="&lt;tc:in>" id="c_in">
-      <tc:in value="#{luminary.name}" id="in"/>
+      <tc:in value="#{luminary.name}" id="in" labelLayout="skip"/>
     </tc:column>
     <tc:column label="&lt;tc:date>" id="c_date">
-      <tc:date value="#{luminary.discoverYear}" converter="#{sheetController.yearConverter}"/>
+      <tc:date value="#{luminary.discoverYear}" converter="#{sheetController.yearConverter}" labelLayout="skip"/>
     </tc:column>
     <tc:column label="&lt;tc:button>" id="c_button">
       <tc:button label="#{luminary.name}"/>
@@ -48,7 +48,7 @@
       <tc:link label="#{luminary.name}" link="https://en.wikipedia.org/wiki/#{luminary.name}"/>
     </tc:column>
     <tc:column label="&lt;tc:selectOneChoice>" id="c_selectOneChoice">
-      <tc:selectOneChoice>
+      <tc:selectOneChoice labelLayout="skip">
         <tc:selectItem itemLabel="first" itemValue="1"/>
         <tc:selectItem itemLabel="second" itemValue="2"/>
         <tc:selectItem itemLabel="third" itemValue="3"/>
@@ -61,9 +61,9 @@
     </tc:column>
     <tc:column label="&lt;tc:flexLayout>" id="c_panel">
       <tc:flexLayout columns="1*;10px;1*">
-        <tc:in value="1st"/>
-        <tc:out value="/"/>
-        <tc:in value="2nd"/>
+        <tc:in value="1st" labelLayout="skip"/>
+        <tc:out value="/" labelLayout="skip"/>
+        <tc:in value="2nd" labelLayout="skip"/>
       </tc:flexLayout>
     </tc:column>
   </tc:sheet>