Data and Collections"
(Created page with "{{ZKDevelopersReferencePageHeader}} =Expose ViewModel's Properties = ViewModel, like a JavaBean, exposes its properties through getter and setter methods. Any property that VIe...") |
m ((via JWB)) |
||
(15 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{ZKDevelopersReferencePageHeader}} | {{ZKDevelopersReferencePageHeader}} | ||
+ | {{Deprecated | url=[http://books.zkoss.org/zk-mvvm-book/8.0/viewmodel/data_and_collections.html zk-mvvm-book/8.0/viewmodel/data_and_collections]|}} | ||
=Expose ViewModel's Properties = | =Expose ViewModel's Properties = | ||
− | ViewModel, like a JavaBean, exposes its properties through getter and setter methods. Any property that VIew (ZUL) wants to retrieve through data binding should have a corresponding getter method. The method's return type can be primitive type (int, boolean...), or JavaBean. If a UI component needs to save its attribute value (it's usually user input) back to ViewModel's property, the ViewModel should provide a corresponding setter method. Therefore, through setter and getter | + | ViewModel, like a JavaBean, exposes its properties through getter and setter methods. Any property that VIew (ZUL) wants to retrieve through data binding should have a corresponding getter method. The method's return type can be primitive type (int, boolean...), or a JavaBean. If a UI component needs to save its attribute value (it's usually user input) back to ViewModel's property, the ViewModel should provide a corresponding setter method. Therefore, through setter and getter can change the data of both the View and the ViewModel using the data binding mechanism. |
Line 47: | Line 48: | ||
</window> | </window> | ||
</source> | </source> | ||
− | * @id('vm') | + | * @id('vm') sets ViewModel name, then we can use <code>vm</code> to reference ViewModel's property in the following components. (line 1) |
== Property is Object or JavaBean == | == Property is Object or JavaBean == | ||
− | If a property is a JavaBean, that JavaBean's property can also be accessed through EL expression. | + | If a property is a JavaBean, that JavaBean's property can also be accessed through an EL expression. |
''' Object type property''' | ''' Object type property''' | ||
Line 111: | Line 112: | ||
== Property is Collection == | == Property is Collection == | ||
− | If the UI component is a collection container like listbox or grid, it should be bound to a property whose type is < | + | If the UI component is a collection container like listbox or grid, it should be bound to a property whose type is <code>Map</code> or subinterface of <code>Collection</code> like <code>List</code> or <code>Set</code>. |
'''Collection type property''' | '''Collection type property''' | ||
− | <source lang="java"> | + | <source lang="java" highlight="5,14"> |
public class CollectionViewModel{ | public class CollectionViewModel{ | ||
Line 136: | Line 137: | ||
</source> | </source> | ||
− | * As we can't save whole list through data binding, the ViewModel only | + | * Line 14: As we can't save whole list through data binding, the ViewModel only provides getter for <code>itemList</code>. |
'''A zul that uses CollectionViewModel''' | '''A zul that uses CollectionViewModel''' | ||
− | <source lang="xml"> | + | <source lang="xml" highlight="2"> |
<label value="@load(vm.address.street)"/> | <label value="@load(vm.address.street)"/> | ||
<listbox model="@load(vm.itemList)" selectedIndex="@bind(vm.selectedIndex)"> | <listbox model="@load(vm.itemList)" selectedIndex="@bind(vm.selectedIndex)"> | ||
− | < | + | <template name="model" var="item"> |
+ | <listitem label="@load(item.name)"/> | ||
+ | </template> | ||
</listbox> | </listbox> | ||
</source> | </source> | ||
− | * Listbox's model attribute should be bound to a collection object, vm.itemList. | + | * Line 2: Listbox's <code>model</code> attribute should be bound to a collection object, <code>vm.itemList</code>. |
+ | |||
+ | =Version History= | ||
+ | {| class='wikitable' | width="100%" | ||
+ | ! Version !! Date !! Content | ||
+ | |- | ||
+ | | 6.0.0 | ||
+ | | February 2012 | ||
+ | | The MVVM was introduced. | ||
+ | |} | ||
{{ZKDevelopersReferencePageFooter}} | {{ZKDevelopersReferencePageFooter}} |
Latest revision as of 07:36, 8 July 2022
This article is out of date, please refer to zk-mvvm-book/8.0/viewmodel/data_and_collections for more up to date information.
Expose ViewModel's Properties
ViewModel, like a JavaBean, exposes its properties through getter and setter methods. Any property that VIew (ZUL) wants to retrieve through data binding should have a corresponding getter method. The method's return type can be primitive type (int, boolean...), or a JavaBean. If a UI component needs to save its attribute value (it's usually user input) back to ViewModel's property, the ViewModel should provide a corresponding setter method. Therefore, through setter and getter can change the data of both the View and the ViewModel using the data binding mechanism.
Property is Primitive Type
Primitive type property
public class PrimitiveViewModel{
private int index;
private double price;
public int getIndex(){
return index;
}
public void setIndex(int index){
this.index = index;
}
public double getPrice(){
return price;
}
public void setPrice(double price){
this.price = price;
}
}
A zul that uses PrimitiveViewModel
<window apply="org.zkoss.bind.BindComposer" viewModel="@id('vm') @init('foo.PrimitiveViewModel')" >
<intbox value="@bind(vm.index)"/>
<doublebox value="@bind(vm.price)"/>
<!-- other components -->
</window>
- @id('vm') sets ViewModel name, then we can use
vm
to reference ViewModel's property in the following components. (line 1)
Property is Object or JavaBean
If a property is a JavaBean, that JavaBean's property can also be accessed through an EL expression.
Object type property
public class Address{
private String city;
private String street;
//gettter & setter
}
public class ObjectViewModel{
private Integer index;
private String name;
//JavaBean
private Address address;
public int getIndex(){
return index;
}
public void setIndex(Integer index){
this.index = index;
}
public String getName(){
return name;
}
public void setName(String name){
this.name = name;
}
public Item getAddress(){
return address;
}
public void setAddress(Address address){
this.address = address;
}
}
A zul that uses ObjectViewModel.
<intbox value="@bind(vm.index)"/>
<textbox value="@load(vm.name)"/>
<label value="@load(vm.address.street)"/>
- vm.address is a JavaBean, and we can access its property street with EL expression vm.address.street. (line 5)
Property is Collection
If the UI component is a collection container like listbox or grid, it should be bound to a property whose type is Map
or subinterface of Collection
like List
or Set
.
Collection type property
public class CollectionViewModel{
//primitive type
private int selectedIndex;
//Collection
private List itemList;
public int getSelectedIndex(){
return selectedIndex;
}
public void setSelectedIndex(int index){
selectedIndex = index;
}
public List getItemList(){
return itemList;
}
}
- Line 14: As we can't save whole list through data binding, the ViewModel only provides getter for
itemList
.
A zul that uses CollectionViewModel
<label value="@load(vm.address.street)"/>
<listbox model="@load(vm.itemList)" selectedIndex="@bind(vm.selectedIndex)">
<template name="model" var="item">
<listitem label="@load(item.name)"/>
</template>
</listbox>
- Line 2: Listbox's
model
attribute should be bound to a collection object,vm.itemList
.
Version History
Version | Date | Content |
---|---|---|
6.0.0 | February 2012 | The MVVM was introduced. |