Selectbox Template

From Documentation
Revision as of 09:31, 8 February 2012 by Tomyeh (talk | contribs) (Created page with "{{ZKDevelopersReferencePageHeader}} Similar to Listbox, you can render a selectbox with a template. However, noti...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


Selectbox Template


Similar to Listbox, you can render a selectbox with a template. However, notice that, unlike other components, selectbox doesn't allow any child component, so you have to render each item as a string. For example,

<selectbox model="${users}" onSelect='alert(model.get(event.getData()));'>
	<template name="model">
		Name is ${each}
	</template>
</selectbox>

where we assume there is a list model (ListModel) called users such as:

ListModelList model = new ListModelList(new String[] { "Tony", "Ryan", "Jumper", "Wing", "Sam" });

Version History

Last Update : 2012/02/08


Version Date Content
6.0.0 November 2011 The selectbox component was introduced.
6.0.0 July 2011 The template feature was introduced.



Last Update : 2012/02/08

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