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 2009/10/01 15:17:29 UTC

svn commit: r820643 - /myfaces/tobago/trunk/example/demo/src/main/webapp/overview/form.xhtml

Author: lofwyr
Date: Thu Oct  1 13:17:28 2009
New Revision: 820643

URL: http://svn.apache.org/viewvc?rev=820643&view=rev
Log:
add a field outsite the subforms

Modified:
    myfaces/tobago/trunk/example/demo/src/main/webapp/overview/form.xhtml

Modified: myfaces/tobago/trunk/example/demo/src/main/webapp/overview/form.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/demo/src/main/webapp/overview/form.xhtml?rev=820643&r1=820642&r2=820643&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/demo/src/main/webapp/overview/form.xhtml (original)
+++ myfaces/tobago/trunk/example/demo/src/main/webapp/overview/form.xhtml Thu Oct  1 13:17:28 2009
@@ -36,7 +36,7 @@
 
     <tc:box label="#{overviewBundle.form_outTitle}">
       <f:facet name="layout">
-        <tc:gridLayout rows="80px;fixed;fixed;fixed"/>
+        <tc:gridLayout rows="80px;fixed;fixed;fixed;fixed"/>
       </f:facet>
 
       <tc:out escape="false" value="#{overviewBundle.form_text2}"/>
@@ -70,14 +70,19 @@
         </tc:form>
       </tc:box>
 
+      <tc:separator label="#{overviewBundle.form_outTitle}" />
+      
       <tc:panel>
         <f:facet name="layout">
-          <tc:gridLayout columns="*;fixed" rows="fixed;*"/>
+          <tc:gridLayout rows="fixed;fixed" columns="*;100px"/>
         </f:facet>
 
-        <tc:cell/>
-        <tc:button label="#{overviewBundle.submitAll}"/>
-        <tc:cell spanX="2"/>
+        <tx:in value="#{demo.text[2]}" required="true" label="#{overviewBundle.newValue2}"/>
+        <tc:button label="#{overviewBundle.submitAll}">
+          <tc:gridLayoutConstraint rowSpan="2"/>
+        </tc:button>
+        <tx:in value="#{demo.text[2]}" readonly="true" label="#{overviewBundle.modelValue2}"/>
+        
       </tc:panel>
     </tc:box>
   </tc:panel>