bandpopup

Purpose

The popup that belongs to a Bandbox instance.Developer usually listen to the onOpen event that is sent to Bandbox and then creates proper components as children of this component.

Examples

<z:bandbox>
    <z:bandpopup>
        <z:vbox>
            <z:hbox>
                <z:label value="Search"/>
                <z:textbox/>
            </z:hbox>
            <z:listbox width="200px">
                <z:listhead>
                    <z:listheader label="Name"/>
                    <z:listheader label="Description"/>
                </z:listhead>
                <z:listitem>
                    <z:listcell label="John"/>
                    <z:listcell label="CEO"/>
                </z:listitem>
                <z:listitem>
                    <z:listcell label="Joe"/>
                    <z:listcell label="Engineer"/>
                </z:listitem>
                <z:listitem>
                    <z:listcell label="Mary"/>
                    <z:listcell label="Supervisor"/>
                </z:listitem>
            </z:listbox>
        </z:vbox>
    </z:bandpopup>
</z:bandbox>

Description

Attributes

ZK Official Reference

Component Reference

Show bandpopup Component Reference

Java API

Show bandpopup Java API