Bandpopup"

From Documentation
m ((via JWB))
 
(5 intermediate revisions by 5 users not shown)
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: [http://books.zkoss.org/wiki/ZK_Style_Guide/XUL_Component_Specification/Bandpopup Bandpopup]
+
*Style Guide: [[ZK_Style_Guide/XUL_Component_Specification/Bandpopup| Bandpopup]]
  
 
= Employment/Purpose =
 
= Employment/Purpose =
The popup that belongs to a <tt>Bandbox</tt> instance.
+
The popup that belongs to a <code>Bandbox</code> instance.
  
Developer usually listen to the <tt>onOpen</tt> event that is sent to <tt>Bandbox</tt> and then creates proper components as children of this component.
+
Developers usually listen to the <code>onOpen</code> event that is sent to <code>Bandbox</code> and then creates proper components as children of this component.
  
 
= Example =
 
= Example =
Line 26: Line 26:
 
</hbox>
 
</hbox>
 
<listbox width="200px"
 
<listbox width="200px"
onSelect="bd.value=self.selectedItem.label;   bd.closeDropdown();">
+
onSelect="bd.value=self.selectedItem.label;bd.close();">
 
<listhead>
 
<listhead>
 
<listheader label="Name" />
 
<listheader label="Name" />
Line 51: Line 51:
 
=Supported Events=
 
=Supported Events=
  
{| border="1" | width="100%"
+
{| class='wikitable' | width="100%"
 
! <center>Name</center>
 
! <center>Name</center>
 
! <center>Event Type</center>
 
! <center>Event Type</center>
Line 67: Line 67:
 
=Use Cases=
 
=Use Cases=
  
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Description !! Example Location
 
! Version !! Description !! Example Location
 
|-
 
|-
Line 76: Line 76:
  
 
=Version History=
 
=Version History=
 
+
{{LastUpdated}}
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-

Latest revision as of 10:41, 12 January 2022

Bandpopup

Employment/Purpose

The popup that belongs to a Bandbox instance.

Developers usually listen to the onOpen event that is sent to Bandbox and then creates proper components as children of this component.

Example

ZKComRef Bandbox Example.png

   
<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

Name
Event Type
None None


Supported Children

*All

Use Cases

Version Description Example Location
     

Version History

Last Update : 2022/01/12


Version Date Content
     



Last Update : 2022/01/12

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.