@NotifyChangeDisabled"
From Documentation
m ((via JWB)) |
|||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{ZKDevelopersReferencePageHeader}} | {{ZKDevelopersReferencePageHeader}} | ||
+ | {{Deprecated | url=[http://books.zkoss.org/zk-mvvm-book/8.0/syntax/notifychangedisabled.html zk-mvvm-book/8.0/syntax/viewmodel/notifychangedisabled]|}} | ||
+ | |||
=Syntax= | =Syntax= | ||
Line 34: | Line 36: | ||
=Version History= | =Version History= | ||
− | + | ||
− | {| | + | {| class='wikitable' | width="100%" |
! Version !! Date !! Content | ! Version !! Date !! Content | ||
|- | |- |
Latest revision as of 07:36, 8 July 2022
This article is out of date, please refer to zk-mvvm-book/8.0/syntax/viewmodel/notifychangedisabled for more up to date information.
Syntax
@NotifyChangeDisabled
Description
Target: setter method
Purpose: Marker annotation to disable default notification behavior.
To disable the default notification when binder sets a property.
Example
public class OrderVM {
//other code...
@NotifyChangeDisabled
public void setSelected(Order selected) {
this.selected = selected;
}
}
Version History
Version | Date | Content |
---|---|---|
6.0.0 | February 2012 | The MVVM was introduced. |