In my flex app I have a public bindable property. I want it so that every time the value of that property changes, a function gets triggered. I tried using ChangeWatchers, but it seems those only apply to built-in components like a text box change. I would like to do that same behavior with a property that changes at runtime.
|
|
|
|
|
|
|
One option is to use
Here, |
||
|
|
|
|
well, the easiest way is to listen to other than that, you might want to have a look at greetz back2dos |
||
|
|
|
|
Look into BindUtils class as back2dos suggests. And, also, you can set the name of the event that will be triggered when a change is done to a property (default is propertyChange) like this:
That is if ChangeWatchers adds listeners for the change event instead of propertyChange event. Which would be kind of weird, but not impossible with all the mishaps of the flex SDKs. But again, I think BindUtils class should do the trick for you. |
||
|
|
|
|
Use the class ObjectProxy or its subclass and wrap up the class that has a property you need to watch. In my example, I'm calling a func if someone is changing the property salary giving it a value of more than 55000 in an object Person: package com.farata { import mx.utils.ObjectProxy; import flash.utils.*; use namespace flash_proxy;
if ( name == 'salary'&& value>55000) {
// add a new property to this instance of the
// class Person, which can be used in the calculations
// of the total compensation
setProperty("pension", 0.02);
}
super.setProperty(name, value); |
||
|
|
