Selectbox"
Jumperchen (talk | contribs) m (→Example) |
|||
(18 intermediate revisions by 4 users not shown) | |||
Line 2: | Line 2: | ||
= Selectbox = | = Selectbox = | ||
− | *Demonstration: | + | *Demonstration: [https://www.zkoss.org/zkdemo/getting_started/selection_dropdown selection_dropdown] |
*Java API: <javadoc>org.zkoss.zul.Selectbox</javadoc> | *Java API: <javadoc>org.zkoss.zul.Selectbox</javadoc> | ||
*JavaScript API: <javadoc directory="jsdoc">zul.wgt.Selectbox</javadoc> | *JavaScript API: <javadoc directory="jsdoc">zul.wgt.Selectbox</javadoc> | ||
*Style Guide: N/A | *Style Guide: N/A | ||
+ | |||
+ | {{ZK All}} | ||
+ | {{versionSince | 6.0.0}} | ||
= Employment/Purpose = | = Employment/Purpose = | ||
Line 12: | Line 15: | ||
= Example = | = Example = | ||
− | [[Image: | + | [[Image:selectbox9.png | center]] |
<source lang="xml" > | <source lang="xml" > | ||
Line 29: | Line 32: | ||
</source> | </source> | ||
− | == | + | To give the selectbox an initial value, for example, Tony, add the following code after the model is created: |
− | Here is the | + | |
+ | <source lang="java" > | ||
+ | model.addToSelection ("Tony"); | ||
+ | </source> | ||
+ | |||
+ | |||
+ | == Data binding == | ||
+ | |||
+ | Here is the MVVM way: | ||
<source lang="xml" > | <source lang="xml" > | ||
− | < | + | <zscript><![CDATA[ |
− | + | public class MyUserBean { | |
− | + | private String[] userList = { "Tony", "Ryan", "Jumper", "Wing", "Sam" }; | |
− | + | private int index = 0; | |
+ | |||
+ | public ListModelList getUserList() { | ||
+ | return new ListModelList(Arrays.asList(userList)); | ||
+ | } | ||
− | + | public void setUserList() { | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
} | } | ||
− | |||
− | |||
− | + | public void setIndex(int ind) { | |
+ | index = ind; | ||
+ | } | ||
− | + | public int getIndex() { | |
− | + | return index; | |
− | + | } | |
− | } | ||
− | |||
− | <div> | + | } |
+ | MyUserBean mybean = new MyUserBean(); | ||
+ | /** Implements ItemRenderer without using template | ||
+ | org.zkoss.zul.ItemRenderer render = new org.zkoss.zul.ItemRenderer() { | ||
+ | public String render(Component owner, Object data, int index) throws Exception { | ||
+ | return data.toString(); | ||
+ | } | ||
+ | }; | ||
+ | */ | ||
+ | ]]></zscript> | ||
+ | <div apply="org.zkoss.bind.BindComposer"> | ||
Select User: | Select User: | ||
− | <selectbox id="box" model="@ | + | <selectbox id="box" model="@init(mybean.userList)" |
− | + | selectedIndex="@bind(mybean.index)"> | |
+ | <template name="model">${each}</template> | ||
+ | </selectbox> | ||
− | + | Selected: | |
− | + | <label id="val" value="@load(mybean.index)" /> | |
− | + | </div> | |
− | </ | ||
</source> | </source> | ||
+ | |||
+ | |||
+ | {{CustomItemRendering |selectbox}} | ||
=Supported Events= | =Supported Events= | ||
− | {| | + | {| class='wikitable' | width="100%" |
! <center>Name</center> | ! <center>Name</center> | ||
! <center>Event Type</center> | ! <center>Event Type</center> | ||
|- | |- | ||
− | | <center>< | + | | <center><code>onSelect</code></center> |
| '''Event:''' <javadoc>org.zkoss.zk.ui.event.SelectEvent</javadoc> | | '''Event:''' <javadoc>org.zkoss.zk.ui.event.SelectEvent</javadoc> | ||
Notifies one that the user has selected a new item in the selectbox. | Notifies one that the user has selected a new item in the selectbox. | ||
Line 94: | Line 105: | ||
=Use Cases= | =Use Cases= | ||
− | {| | + | {| class='wikitable' | width="100%" |
! Version !! Description !! Example Location | ! Version !! Description !! Example Location | ||
|- | |- | ||
Line 104: | Line 115: | ||
=Version History= | =Version History= | ||
{{LastUpdated}} | {{LastUpdated}} | ||
− | {| | + | {| class='wikitable' | width="100%" |
! Version !! Date !! Content | ! Version !! Date !! Content | ||
|- | |- | ||
Line 110: | Line 121: | ||
| October 4, 2011 | | October 4, 2011 | ||
| Add the new Selectbox component | | Add the new Selectbox component | ||
+ | |- | ||
+ | | 6.0.0-RC2 | ||
+ | | December 6, 2011 | ||
+ | | Rename OptionRenderer to ItemRenderer | ||
|} | |} | ||
{{ZKComponentReferencePageFooter}} | {{ZKComponentReferencePageFooter}} |
Latest revision as of 01:57, 31 January 2024
Selectbox
- Demonstration: selection_dropdown
- Java API: Selectbox
- JavaScript API: Selectbox
- Style Guide: N/A
- Available for ZK:
Since 6.0.0
Employment/Purpose
Selectbox is a lightweight dropdown list and it can support ListModel, Renderer, and Databinding as well. The benefit of it is not to create child widgets for each data, so the memory usage is much lower at the server.
Example
<zk>
<zscript>
<![CDATA[
String[] userName = { "Tony", "Ryan", "Jumper", "Wing", "Sam" };
ListModelList model = new ListModelList(userName);
]]></zscript>
<selectbox model="${model}" onSelect='alert(model.get(event.getData()));'>
<template name="model">
Name is ${each}
</template>
</selectbox>
</zk>
To give the selectbox an initial value, for example, Tony, add the following code after the model is created:
model.addToSelection ("Tony");
Data binding
Here is the MVVM way:
<zscript><![CDATA[
public class MyUserBean {
private String[] userList = { "Tony", "Ryan", "Jumper", "Wing", "Sam" };
private int index = 0;
public ListModelList getUserList() {
return new ListModelList(Arrays.asList(userList));
}
public void setUserList() {
}
public void setIndex(int ind) {
index = ind;
}
public int getIndex() {
return index;
}
}
MyUserBean mybean = new MyUserBean();
/** Implements ItemRenderer without using template
org.zkoss.zul.ItemRenderer render = new org.zkoss.zul.ItemRenderer() {
public String render(Component owner, Object data, int index) throws Exception {
return data.toString();
}
};
*/
]]></zscript>
<div apply="org.zkoss.bind.BindComposer">
Select User:
<selectbox id="box" model="@init(mybean.userList)"
selectedIndex="@bind(mybean.index)">
<template name="model">${each}</template>
</selectbox>
Selected:
<label id="val" value="@load(mybean.index)" />
</div>
Custom Item Rendering
Since this component has no child component like Listbox
, if you want to render its items differently, there 2 ways:
Change text
If you just want to change the text e.g. enclosing it with brackets, just put <template>
as its child and add characters with ${each}
:
<selectbox> <template name="model">[${each}]</template> </selectbox>
- The template only allows text that can be converted into a ZK
Label
.
Change HTML Structure
If you want to make more changes e.g. adding tooltips by setting title attributes, you need to create your own ItemRenderer
. See ZK Developer's Reference/MVC/View/Renderer/Item Renderer.
Supported Events
onSelect |
Event: SelectEvent
Notifies one that the user has selected a new item in the selectbox. |
- Inherited Supported Events: HtmlBasedComponent
Supported Children
*NONE
Use Cases
Version | Description | Example Location |
---|---|---|
Version History
Version | Date | Content |
---|---|---|
6.0.0 | October 4, 2011 | Add the new Selectbox component |
6.0.0-RC2 | December 6, 2011 | Rename OptionRenderer to ItemRenderer |