Foot"

From Documentation
Line 2: Line 2:
  
 
= Foot =
 
= Foot =
*Demonstration: N/A
+
*Demonstration: [http://www.zkoss.org/zkdemo/grid/header_and_footer Grid (Header and footer)]
 
*Java API: <javadoc>org.zkoss.zul.Foot</javadoc>
 
*Java API: <javadoc>org.zkoss.zul.Foot</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zul.grid.Foot</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zul.grid.Foot</javadoc>
 +
*Style Guide: [http://books.zkoss.org/wiki/ZK_Style_Guide/XUL_Component_Specification/Footer Foot]
  
 
= Employment/Purpose =
 
= Employment/Purpose =

Revision as of 11:20, 16 November 2010

Foot

Employment/Purpose

Defines a set of footers ( Footer) for a grid ( Grid).


Example

ZKComRef Foot Example.png

 <grid>
     <columns>
         <column label="Type"/>
         <column label="Content"/>
     </columns>
     <rows>
         <row>
             <label value="File:"/>
             <textbox width="99%"/>
         </row>
         <row>
             <label value="Type:"/>
             <hbox>
                 <listbox rows="1" mold="select">
                     <listitem label="Java Files,(*.java)"/>
                     <listitem label="All Files,(*.*)"/>
                 </listbox>
                 <button label="Browse..."/>
             </hbox>
         </row>
     </rows>
     <foot>
         <footer>footer1</footer>
         <footer>footer2</footer>
     </foot>
 </grid>

Supported events

Name
Event Type
None None

Supported Children

* Footer

Use cases

Grid

Version History

Version Date Content
     



Last Update : 2010/11/16

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.