User Guide
ComponentMixins.refreshDestinations() 229
Description
Method (static); adds all the ComponentMixins methods to the component specified by
componentInstance. This method is called automatically for all components involved in a
data binding. To make the ComponentMixins methods available for a component that is not
involved in a data binding, you must explicitly call this method for that component.
Example
The following code makes the ComponentMixins methods available to a DataSet
component:
mx.data.binding.ComponentMixins.initComponent(_root.myDataSet);
ComponentMixins.refreshDestinations()
Availability
Flash Player 6 (6.0.79.0).
Edition
Flash MX Professional 2004.
Usage
componentInstance.refreshDestinations()
Parameters
None.
Returns
Nothing.
Description
Method; executes all the bindings for which componentInstance is the source EndPoint
object. This method lets you execute bindings whose sources do not emit a “data changed”
event.
Example
The following example executes all the bindings for which the DataSet component instance
named
user_data is the source EndPoint object:
user_data.refreshDestinations();