Foot"

From Documentation
m ((via JWB))
 
(3 intermediate revisions by 3 users not shown)
Line 5: Line 5:
 
*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]
+
*Style Guide: [[ZK_Style_Guide/XUL_Component_Specification/Footer| Footer]]
  
 
= Employment/Purpose =
 
= Employment/Purpose =
Line 18: Line 18:
  
 
<source lang="xml" >
 
<source lang="xml" >
<grid>
+
<grid width="300px">
    <columns>
+
    <columns>
        <column label="Type"/>
+
        <column label="Type" width="50px"/>
        <column label="Content"/>
+
        <column label="Content"/>
    </columns>
+
    </columns>
    <rows>
+
    <rows>
        <row>
+
        <row>
            <label value="File:"/>
+
            <label value="File:"/>
            <textbox width="99%"/>
+
            <textbox width="99%"/>
        </row>
+
        </row>
        <row>
+
        <row>
            <label value="Type:"/>
+
            <label value="Type:"/>
            <hbox>
+
            <hbox>
                <listbox rows="1" mold="select">
+
                <listbox rows="1" mold="select">
                    <listitem label="Java Files,(*.java)"/>
+
                    <listitem label="Java Files,(*.java)"/>
                    <listitem label="All Files,(*.*)"/>
+
                    <listitem label="All Files,(*.*)"/>
                </listbox>
+
                </listbox>
                <button label="Browse..."/>
+
                <button label="Browse..."/>
            </hbox>
+
            </hbox>
        </row>
+
        </row>
    </rows>
+
    </rows>
    <foot>
+
    <foot>
        <footer>footer1</footer>
+
        <footer>footer1</footer>
        <footer>footer2</footer>
+
        <footer>footer2</footer>
    </foot>
+
    </foot>
</grid>
+
</grid>
 
</source>
 
</source>
  
 
=Supported Events=
 
=Supported Events=
  
{| border="1" | width="100%"
+
{| class='wikitable' | width="100%"
 
! <center>Name</center>
 
! <center>Name</center>
 
! <center>Event Type</center>
 
! <center>Event Type</center>
Line 67: Line 67:
  
 
=Version History=
 
=Version History=
 +
{{LastUpdated}}
  
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-

Latest revision as of 11:04, 7 January 2022

Foot

Employment/Purpose

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


Example

ZKComRef Foot Example.png

<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

Name
Event Type
None None

Supported Children

* Footer

Use Cases

Grid

Version History

Last Update : 2022/01/07


Version Date Content
     



Last Update : 2022/01/07

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