listfooter

Purpose

A column of the footer of a list box (Listbox). Its parent must be Listfoot. Unlike Listheader, you could place any child in a list footer.Note: Listcell also accepts children.

Examples

<z:window title="listbox demo" border="normal" width="250px">
    <z:listbox id="box">
        <z:listhead sizable="true">
            <z:listheader label="name" sort="auto"/>
            <z:listheader label="gender" sort="auto"/>
        </z:listhead>
        <z:listitem>
            <z:listcell label="Mary"/>
            <z:listcell label="FEMALE"/>
        </z:listitem>
        <z:listitem>
            <z:listcell label="John"/>
            <z:listcell label="MALE"/>
        </z:listitem>
        <z:listitem>
            <z:listcell label="Jane"/>
            <z:listcell label="FEMALE"/>
        </z:listitem>
        <z:listitem>
            <z:listcell label="Henry"/>
            <z:listcell label="MALE"/>
        </z:listitem>
        <z:listfoot>
            <z:listfooter>
                <z:label value="This is footer1"/>
            </z:listfooter>
            <z:listfooter>
                <z:label value="This is footer2"/>
            </z:listfooter>
        </z:listfoot>
    </z:listbox>
</z:window>

Description

Attributes

ZK Official Reference

Component Reference

Show listfooter Component Reference

Java API

Show listfooter Java API