[flexcoders] Re: Repeaters and databinding

2009-02-24 Thread sunild999999
Your myData Array needs to be an ArrayCollection. ArrayCollections will dispatch CollectionChange events, Arrays do not. So your repeater never gets notified that an item was added to your Array. Sunil --- In flexcoders@yahoogroups.com, Jason jason.merr...@... wrote: Simple question.

[flexcoders] Re: Repeaters and databinding

2009-02-24 Thread Jason
Ah, duh - I should've thought of that. Perfect, thanks. --- In flexcoders@yahoogroups.com, sunild99 sunilbd...@... wrote: Your myData Array needs to be an ArrayCollection. ArrayCollections will dispatch CollectionChange events, Arrays do not. So your repeater never gets notified that