Re: [flexcoders] Nulls in data binding chains

2008-12-01 Thread Michael Prescott
Thanks, Dave. My only concern was that it would turn out not to be supported behavior and might stop working in certain circumstances - before I plough ahead and rely on it. :-) Regards, Michael On Sun, Nov 30, 2008 at 11:33 AM, Dave Kong [EMAIL PROTECTED] wrote: I dont know any docs, but

Re: [flexcoders] Nulls in data binding chains

2008-11-30 Thread Dave Kong
I dont know any docs, but I think it happened to me a couple of times and the result is that the databinding simply does not fire for any changes after the null in the chain. Do a simple test app and try it out. it will be faster than you looking for the doc. On Fri, Nov 28, 2008 at 12:01 PM,

Re: [flexcoders] Nulls in data binding chains

2008-11-30 Thread Josh McDonald
There's two things to keep in mind when pondering bindings: 1) Bindings work on property chains, using chains of ChangeWatcher instances. It's only a couple of pages of code, and pretty easy to get your head around. You're right that they simply stop when they get to a null, and return null. 2)