[flexcoders] Re: How to listen for collection change event in a nested collection?

2012-08-24 Thread Alexei Vinidiktov
Please disregard my question. I've found out why the Collection Change event wasn't firing. It had nothing to do with the code that I presented in my email. On Fri, Aug 24, 2012 at 7:35 PM, Alexei Vinidiktov < alexei.vinidik...@gmail.com> wrote: > Hello, > > I have an array collection of lessons

[flexcoders] How to listen for collection change event in a nested collection?

2012-08-24 Thread Alexei Vinidiktov
Hello, I have an array collection of lessons and each lesson that has an array collection of cards: [Bindable] public class Lesson { public var title:String; public var text:String; public var cards:ArrayCollection = new ArrayCollection(); } [Bindable] public class Card { publ