You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2007/08/22 20:58:48 UTC

svn commit: r568727 - /myfaces/tobago/trunk/example/test/src/main/webapp/popup2.jsp

Author: bommel
Date: Wed Aug 22 11:58:47 2007
New Revision: 568727

URL: http://svn.apache.org/viewvc?rev=568727&view=rev
Log:
added popup2 layout test

Added:
    myfaces/tobago/trunk/example/test/src/main/webapp/popup2.jsp

Added: myfaces/tobago/trunk/example/test/src/main/webapp/popup2.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/test/src/main/webapp/popup2.jsp?rev=568727&view=auto
==============================================================================
--- myfaces/tobago/trunk/example/test/src/main/webapp/popup2.jsp (added)
+++ myfaces/tobago/trunk/example/test/src/main/webapp/popup2.jsp Wed Aug 22 11:58:47 2007
@@ -0,0 +1,72 @@
+<%--
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
+<%@ taglib uri="http://myfaces.apache.org/tobago/component" prefix="tc" %>
+<%@ taglib uri="http://myfaces.apache.org/tobago/extension" prefix="tx" %>
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
+
+
+<f:view>
+  <tc:page id="inputPage" width="500px" height="300px">
+   <tc:panel id="inputPanel">
+     <tc:button id="popupButton"
+       label="Popup">
+       <f:facet name="popup">
+         <tc:popup id="popup" width="400" height="220">
+
+           <tc:box id="box" label="Popup">
+               <f:facet name="layout">
+                 <tc:gridLayout rows="*;fixed;fixed;fixed;54px;fixed" columns="*;*;*"/>
+               </f:facet>
+               <tc:cell spanX="3">
+                 <tc:out value="Text"/>
+               </tc:cell>
+
+               <tc:cell spanX="2">
+                 <tc:label value="label1"/>
+               </tc:cell>
+               <tc:cell/>
+
+               <tc:cell spanX="2">
+                 <tc:selectOneChoice id="choice">
+                   <tc:selectItem itemLabel="" itemValue=""/>
+                 </tc:selectOneChoice>
+               </tc:cell>
+               <tc:cell/>
+
+               <tc:cell spanX="3">
+                 <tc:label value="label2"/>
+               </tc:cell>
+               <tc:cell spanX="3">
+                 <tc:textarea id="textarea"/>
+               </tc:cell>
+
+               <tc:cell/>
+               <tc:button id="saveButton"
+                 label="save">
+                 <tc:attribute name="popupClose" value="afterSubmit"/>
+               </tc:button>
+               <tc:button id="cancelButton"
+                 label="cancel">
+                 <tc:attribute name="popupClose" value="immediate"/>
+               </tc:button>
+           </tc:box>
+         </tc:popup>
+       </f:facet>
+     </tc:button>
+   </tc:panel>
+ </tc:page>
+</f:view>  
\ No newline at end of file