Foot"

From Documentation
m (Created page with 'init')
 
m
Line 1: Line 1:
init
+
{{ZKComponentReferencePageHeader}}
 +
 
 +
= Foot =
 +
 
 +
*Java API: <javadoc>org.zkoss.zul.Foot</javadoc>
 +
*JavaScript API: <javadoc directory="jsdoc">zul.grid.Foot</javadoc>
 +
 
 +
= Employment/Purpose =
 +
Defines a set of footers (Footer) for a grid (Grid).
 +
 
 +
 
 +
= Example =
 +
 
 +
[[File:Example.jpg]]
 +
 
 +
<source lang="xml" >
 +
<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>
 +
</source>
 +
 
 +
 
 +
=Supported events=
 +
 
 +
{| border="1" | width="100%"
 +
! <center>Name</center>
 +
! <center>Event Type</center>
 +
|-
 +
| None
 +
| None
 +
|}
 +
 
 +
=Supported Children=
 +
 
 +
*ALL
 +
 
 +
=Use cases=
 +
 
 +
{| border='1px' | width="100%"
 +
! Version !! Description !! Example Location
 +
|-
 +
| 5.0+
 +
| &nbsp;
 +
| &nbsp;
 +
|}
 +
 
 +
=Version History=
 +
 
 +
{| border='1px' | width="100%"
 +
! Version !! Date !! Content
 +
|-
 +
| 5.x.x
 +
| x/x/20xx
 +
| Initialization
 +
|}
 +
 
 +
{{ZKComponentReferencePageFooter}}

Revision as of 07:18, 30 April 2010

Foot

Employment/Purpose

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


Example

Example.jpg

 <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

*ALL

Use cases

Version Description Example Location
5.0+    

Version History

Version Date Content
5.x.x x/x/20xx Initialization



Last Update : 2010/04/30

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