Does the event fired when something is bound only fire when an equal sign is used?
For example, this doesn't cause a re-bind:
ValueObject.BoundArrayCollection.addElement(newElement);
But this does:
var array:ArrayCollection = ValueObject.BoundArrayCollection;
array.addElement(newElement);
ValueObject.BoundArrayCollection = array;
-------------------------
Call me barely Impressive Captain.
For example, this doesn't cause a re-bind:
ValueObject.BoundArrayCollection.addElement(newElement);
But this does:
var array:ArrayCollection = ValueObject.BoundArrayCollection;
array.addElement(newElement);
ValueObject.BoundArrayCollection = array;
-------------------------
Call me barely Impressive Captain.