zk combobox databinding
- by user121196
The zk code below only shows on item... I need it to show all elements in tmp. any idea? thanks
<zscript>
List tmp=Arrays.asList(new String[]{"a","b","c"});
]]>
</zscript>
<combobox id="mycb" model="@{tmp}">
<comboitem self="@{each=row}" label="xxx" value="yyy">
</comboitem>
</combobox>