Foot"
From Documentation
Zkwikiadmin (talk | contribs) m (Created page with 'init') |
m ((via JWB)) |
||
(17 intermediate revisions by 6 users not shown) | |||
Line 1: | Line 1: | ||
− | + | {{ZKComponentReferencePageHeader}} | |
+ | |||
+ | = Foot = | ||
+ | *Demonstration: [http://www.zkoss.org/zkdemo/grid/header_and_footer Grid (Header and footer)] | ||
+ | *Java API: <javadoc>org.zkoss.zul.Foot</javadoc> | ||
+ | *JavaScript API: <javadoc directory="jsdoc">zul.grid.Foot</javadoc> | ||
+ | *Style Guide: [[ZK_Style_Guide/XUL_Component_Specification/Footer| Footer]] | ||
+ | |||
+ | = Employment/Purpose = | ||
+ | Defines a set of footers ( | ||
+ | [[ZK_Component_Reference/Data/Grid/Footer | Footer]]) for a grid ( | ||
+ | [[ZK_Component_Reference/Data/Grid | Grid]]). | ||
+ | |||
+ | |||
+ | = Example = | ||
+ | |||
+ | [[Image:ZKComRef_Foot_Example.png ]] | ||
+ | |||
+ | <source lang="xml" > | ||
+ | <grid width="300px"> | ||
+ | <columns> | ||
+ | <column label="Type" width="50px"/> | ||
+ | <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> | ||
+ | </source> | ||
+ | |||
+ | =Supported Events= | ||
+ | |||
+ | {| class='wikitable' | width="100%" | ||
+ | ! <center>Name</center> | ||
+ | ! <center>Event Type</center> | ||
+ | |- | ||
+ | | None | ||
+ | | None | ||
+ | |} | ||
+ | |||
+ | *Inherited Supported Events: [[ZK_Component_Reference/Base_Components/XulElement#Supported_Events | XulElement]] | ||
+ | |||
+ | =Supported Children= | ||
+ | |||
+ | *[[ZK_Component_Reference/Data/Grid/Footer | Footer]] | ||
+ | |||
+ | =Use Cases= | ||
+ | |||
+ | [[ZK_Component_Reference/Data/Grid#Use_Cases | Grid]] | ||
+ | |||
+ | =Version History= | ||
+ | {{LastUpdated}} | ||
+ | |||
+ | {| class='wikitable' | width="100%" | ||
+ | ! Version !! Date !! Content | ||
+ | |- | ||
+ | | | ||
+ | | | ||
+ | | | ||
+ | |} | ||
+ | |||
+ | {{ZKComponentReferencePageFooter}} |
Latest revision as of 11:04, 7 January 2022
Foot
- Demonstration: Grid (Header and footer)
- Java API: Foot
- JavaScript API: Foot
- Style Guide: Footer
Employment/Purpose
Defines a set of footers ( Footer) for a grid ( Grid).
Example
<grid width="300px">
<columns>
<column label="Type" width="50px"/>
<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
None | None |
- Inherited Supported Events: XulElement
Supported Children
* Footer
Use Cases
Version History
Version | Date | Content |
---|---|---|