Bandpopup"
From Documentation
Jimmyshiau (talk | contribs) |
m |
||
Line 6: | Line 6: | ||
*Java API: <javadoc>org.zkoss.zul.Bandpopup</javadoc> | *Java API: <javadoc>org.zkoss.zul.Bandpopup</javadoc> | ||
*JavaScript API: <javadoc directory="jsdoc">zul.inp.Bandpopup</javadoc> | *JavaScript API: <javadoc directory="jsdoc">zul.inp.Bandpopup</javadoc> | ||
− | *Style Guide: [ | + | *Style Guide: [[ZK_Style_Guide/XUL_Component_Specification/Bandpopup| Bandpopup]] |
= Employment/Purpose = | = Employment/Purpose = |
Revision as of 08:37, 19 January 2011
Bandpopup
Employment/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.
Example
<bandbox id="bd">
<bandpopup>
<vbox>
<hbox>
Search
<textbox />
</hbox>
<listbox width="200px"
onSelect="bd.value=self.selectedItem.label;bd.close();">
<listhead>
<listheader label="Name" />
<listheader label="Description" />
</listhead>
<listitem>
<listcell label="John" />
<listcell label="CEO" />
</listitem>
<listitem>
<listcell label="Joe" />
<listcell label="Engineer" />
</listitem>
<listitem>
<listcell label="Mary" />
<listcell label="Supervisor" />
</listitem>
</listbox>
</vbox>
</bandpopup>
</bandbox>
Supported Events
None | None |
- Inherited Supported Events: XulElement
Supported Children
*All
Use Cases
Version | Description | Example Location |
---|---|---|
Version History
Version | Date | Content |
---|---|---|