Associate UI Components with a Collection
From Documentation
This article is out of date, please refer to https://docs.zkoss.org/zk_dev_ref/ for more up to date information.
It can be very useful to associate a collection with a UI component and the Data Binding Manager will convert the collection into UI components accordingly.
- Prepare the data source of collection
- Associate the collection with
modelattribute of those supported UI components, ex.ListboxandGrid. - If the UI component is a selection type one such as
ListboxorCombobox, you can also associate a variable withselectedItemattribute of the UI component. The Data Binding Manager will hold in the variable the currently selected collection item for you. - Define a template of UI components
- Define a variable, whatever you want, to represent each instance in the Collection with
selfattribute.<component-name self="@{each='variable-name'}"/>The variable-name could only be seen by the component-name and its child components. - Associate UI components with the variable
<component-name attribute-name="@{variable-name.attribute-name}"/>
- Define a variable, whatever you want, to represent each instance in the Collection with
In the following example, we demonstrate how to associate a collection with Listbox to display a list of persons.
<?init class="org.zkoss.zkplus.databind.AnnotateDataBinderInit"?>
<window width="500px">
<zscript><![CDATA[
//prepare the example persons List
int count = 30;
List persons = new ArrayList();
for(int j= 0; j < count; ++j) {
Person personx = new Person();
personx.setFirstName("Tom"+j);
personx.setLastName("Hanks"+j);
persons.add(personx);
}
Person selected = persons.get(0);
]]>
</zscript>
<listbox rows="4" model="@{persons}" selectedItem="@{selected}">
<listhead>
<listheader label="First Name" width="100px" />
<listheader label="Last Name" width="100px" />
<listheader label="Full Name" width="100px" />
</listhead>
<!-- define variable person here-->
<listitem self="@{each='person'}">
<listcell>
<textbox value="@{person.firstName}" />
</listcell>
<listcell>
<textbox value="@{person.lastName}" />
</listcell>
<listcell label="@{person.fullName}" />
</listitem>
</listbox>
</window>