@NotifyChangeDisabled"

From Documentation
m ((via JWB))
Line 37: Line 37:
 
=Version History=
 
=Version History=
 
{{LastUpdated}}
 
{{LastUpdated}}
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-

Revision as of 02:51, 12 January 2022


@NotifyChangeDisabled


Stop.png 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

Last Update : 2022/01/12


Version Date Content
6.0.0 February 2012 The MVVM was introduced.




Last Update : 2022/01/12

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.