1
vote
How much logic should be included in a Flex MXML attribute?
It's not a good idea to put more than one liner inline. Hard to read, hard to debug.
To make the inline code more readable though, put it inside the curly braces and write it in multiple lines. …
0
votes
Watching a bindable property
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 …
