footer

Purpose

A column of the footer of a grid Grid. Its parent must be Foot.Unlike Column, you could place any child in a grid footer.

Examples

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

Description

Attributes

ZK Official Reference

Component Reference

Show footer Component Reference

Java API

Show footer Java API