Here is a quick tip for Flex newbies although I imagine this is something thats fairly obvious. If you want to change the complete dataset of an ArrayCollection, do not create a new ArrayCollection object pointing to the same variable(well you can, but it will kill all the databound controls that are listening to events on the ArrayCollection instance). Instead use arraycollection.source = [ ... ] to repopulate the source value with a new Array. This will broadcast a CollectionEvent with the ‘kind’ property of the event set to ‘RESET’ and keep all the controls in sync. CollectionEvents are broadcasted everytime the values in an ListCollectionView instance are changed (ArrayCollections extend ListCollectionView).
I just saw this bug on an application I was working on where the controls kept getting out of sync with the core data in the ArrayCollection and this was the culprit ! The code looked something like this:
[AS]
[Bindable]
public var dataAC:ArrayCollection;
…
private function onDataLoaded(evt:Event){
dataAC = new ArrayCollection(parseIntoArray(evt.data));
}
[/AS]
So everytime the new data came in, databinding was destroyed. The correct solution should have looked like:
[AS]
[Bindable]
public var dataAC:ArrayCollection = new ArrayCollection;
…
private function onDataLoaded(evt:Event){
dataAC.source = parseIntoArray(evt.data);
}
[/AS]
Hope this saves some time for someone
Software Engineer at Comcast Innovation Labs, Creative Technologist, Open Source enthusiast, amateur illustrator, manager Philly Android Alliance User Group. The content on this blog do not reflect the views of my employer.
Pingback: Flex Tip: Changing The Source Of An... [Linkosphere]
Pingback: Code Sweat Blog » Blog Archive » Some Flex 2 Related Links (pt. two)