Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help with [Bindable]

Status
Not open for further replies.

grande

Programmer
Feb 14, 2005
657
CA
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top