> someClass.collectionOfVOs = new ArrayList (event.data as Array); It seems to me that you are always creating a new ArrayList instance when handling the event. Did you try to initialize collectionVOs with an empty ArrayList in order to make sure to populate always the same ArrayList object instance with event.data?
someClass.collectionOfVOs = new ArrayList(); ... someClass.collectionOfVOs.source = event.data as Array; HTH, Olaf -- Sent from: http://apache-royale-development.20373.n8.nabble.com/
