dynamicObservableMixin.bind method
Links the specified action to the property specified in the name parameter. This function is invoked when the value of the property may have changed. It is not guaranteed that the action will be called only when a value has actually changed, nor is it guaranteed that the action will be called for every value change. The implementation of this function coalesces change notifications, such that multiple updates to a property value may result in only a single call to the specified action.
Syntax
var function = dynamicObservableMixin.bind(name, action);
Parameters
name
Type: StringThe name of the property to which to bind the action.
action
Type: ObjectThe function to invoke asynchronously when the property may have changed.
Return value
Type: Function
This object is returned.
Requirements
Minimum WinJS version |
WinJS 1.0 |
Namespace |
WinJS.Binding |