I have been using { } around variables in MXML without really understanding what they are for. I am now needing to know if I should use it around a variable..what does that do?
example: <mx:label text="{variable}"/>
|
|
|
|
|
|
|
That's a binding!, |
||
|
|
|
|
The {braces} formation lets you set a control to respond when a label changes. Any variable that is marked with a [Bindable] attribute like this:
can be placed in binding statement. Keep in mind that if you want to bind to an array that you should use an ArrayCollection rather than a standard Array, because ArrayCollection implements IList and ICollectionView, which allows it to fire updates to the control whenever an item is added or removed from the collection, and arrays require the control to be manually updated to keep in sync. |
|||
|
|
|
|
As stated above, this is will bind a variable to that object.
This will bind
|
||
|
|
|
|
As stated several times already, that is indeed a data binding. There is a nice little article from adobe on using data bindings in flex. |
||
|
|
|
|
Thanks its works for change lable value by php response example: Regards Sarmad Mahar |
||
|
|