Raz,
There's a built in mechanism to prevent this problem in circular bindings. If
the new value of a property is the same as the existing value when you set it,
then it's bindings are not updated (the binding event never fires), although
the setter method for that property itself is still called.
Ben Stucki
--------------------------------
We're Hiring! Seeking a passionate developer to join our team building Flex
based products. Position is in the Washington D.C. metro area. If interested
contact [EMAIL PROTECTED]
----------------------------------------
From: "raz_gilad" <[EMAIL PROTECTED]>
Sent: Wednesday, February 28, 2007 11:20 PM
To: [email protected]
Subject: [flexcoders] Circular Binding
Hi
Does anyone knows how Circular Binding works? I've used the follwing action
script code and I've expected it to go into endless loop - but it did not. Any
idea why ?
BindingUtils.bindProperty(item,"Threshold",txtin,"text");
BindingUtils.bindProperty(txtin,"text",item,"Threshold");
Thanks
Raz