Combobox Template

From Documentation
Revision as of 07:34, 8 July 2022 by Hawk (talk | contribs) ((via JWB))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)



Similar to Listbox, you can render a combobox with a template:

<combobox model="${infos}">
	<template name="model">
		<comboitem label="${each[0]}: ${each[1]}"/>
	</template>
</combobox>

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

ListModel infos = new ListModelArray(
	new String[][] {
		{"Apple", "10kg"},
		{"Orange", "20kg"},
		{"Mango", "12kg"}
});

Version History

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



Last Update : 2022/07/08

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