Combobox Template"
From Documentation
m ((via JWB)) |
m (replace tt with code (via JWB)) |
||
Line 11: | Line 11: | ||
</source> | </source> | ||
− | where we assume there is a list model (<javadoc>org.zkoss.zul.ListModel</javadoc>) called < | + | where we assume there is a list model (<javadoc>org.zkoss.zul.ListModel</javadoc>) called <code>infos</code> such as: |
<source lang="java"> | <source lang="java"> |
Revision as of 14:12, 12 January 2022
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. |