treefoot

Purpose

A treefoot is main part of tree which contains set of footers. The set of footers is defined by a number of treefooter components. Each column will appear as a footer at the bottom of the tree.

Examples

<z:window title="tree demo" border="normal" width="400px">
    <z:tree id="tree" rows="5">
        <z:treecols sizable="true">
            <z:treecol label="Name"/>
            <z:treecol label="Description"/>
        </z:treecols>
        <z:treechildren>
            <z:treeitem>
                <z:treerow>
                    <z:treecell label="Item 1"/>
                    <z:treecell label="Item 1 description"/>
                </z:treerow>
            </z:treeitem>
            <z:treeitem>
                <z:treerow>
                    <z:treecell label="Item 2"/>
                    <z:treecell label="Item 2 description"/>
                </z:treerow>
                <z:treechildren>
                    <z:treeitem>
                        <z:treerow>
                            <z:treecell label="Item 2.1"/>
                        </z:treerow>
                    </z:treeitem>
                    <z:treeitem>
                        <z:treerow>
                            <z:treecell label="Item 2.2"/>
                            <z:treecell label="Item 2.2 is something who cares"/>
                        </z:treerow>
                    </z:treeitem>
                </z:treechildren>
            </z:treeitem>
            <z:treeitem label="Item 3"/>
        </z:treechildren>
        <z:treefoot>
            <z:treefooter label="Count"/>
            <z:treefooter label="Summary"/>
        </z:treefoot>
    </z:tree>
</z:window>

Description

Attributes

ZK Official Reference

Component Reference

Show treefoot Component Reference

Java API

Show treefoot Java API