I have a Flex question, which isn't as easy as it seems at first.
At least I'm struggling since 1 week with it.
I have prepared a test case and a screenshot.
The question is: how do you merge data (coming repeatedly from server) into a filtered ArrayCollection?
The screenshot:
The TestCase.mxml (just place it into a Flash Builder 4.6 project):
<?xml version="1.0" encoding="utf-8"?>
<s:Application
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark">
<fx:Declarations>
<s:RadioButtonGroup id="_group" itemClick="radioClicked(event);"/>
</fx:Declarations>
<fx:Script>
<![CDATA[
import mx.collections.ArrayCollection;
import mx.events.ItemClickEvent;
[Bindable]
private var _data:ArrayCollection = new ArrayCollection();
private const DATA1:Array = [10,20,30,40,50];
private const DATA2:Array = [10,20,30,50];
private const DATA3:Array = [10,20,30,40,50,60];
private const DATA4:Array = [10,20,30,35,40,50];
private const DATA5:Array = [];
private const DATA6:Array = [25,45];
private function merge(data:Array):void {
var i:int;
var j:int;
// 1) remove items missing in data from _data
found1:
for (i = _data.length - 1; i >= 0; i--) {
for (j = data.length - 1; j >= 0; j--) {
if (_data[i] == data[j])
continue found1;
}
_data.removeItemAt(i);
}
// 2) add items appeared in data to _data
found2:
for (j = 0; j < data.length; j++) {
for (i = 0; i < _data.length; i++) {
if (_data[i] == data[j])
continue found2;
}
_data.addItem(data[j]);
}
}
private function radioClicked(event:ItemClickEvent):void {
if (event.label.indexOf('Odd') == 0) {
_data.filterFunction = filterOdd;
} else if (event.label.indexOf('Even') == 0) {
_data.filterFunction = filterEven;
} else {
_data.filterFunction = null;
}
_data.refresh();
}
private function filterOdd(item:Object):Boolean {
var i:uint = item as uint;
return (i % 2 == 1);
}
private function filterEven(item:Object):Boolean {
var i:uint = item as uint;
return (i % 2 == 0);
}
]]>
</fx:Script>
<s:layout>
<s:VerticalLayout gap="20" />
</s:layout>
<s:HGroup verticalAlign="baseline">
<s:Label text="FILTER:" />
<s:RadioButton groupName="_group" label="All" selected="true" />
<s:RadioButton groupName="_group" label="Odd" />
<s:RadioButton groupName="_group" label="Even" />
</s:HGroup>
<s:List id="_list" dataProvider="{_data}" />
<s:Button id="_btn1" label="{DATA1.join()}" click="merge(DATA1)" />
<s:Button id="_btn2" label="{DATA2.join()}" click="merge(DATA2)" />
<s:Button id="_btn3" label="{DATA3.join()}" click="merge(DATA3)" />
<s:Button id="_btn4" label="{DATA4.join()}" click="merge(DATA4)" />
<s:Button id="_btn5" label="{DATA5.join()}" click="merge(DATA5)" />
<s:Button id="_btn6" label="{DATA6.join()}" click="merge(DATA6)" />
</s:Application>
The problem lies in the fact, that when the ArrayCollection _data is filtered (because the Checkbox "Even" is set), then the 2nd loop in the test case (for adding new items) adds items (the "35") again and again - because it's filtered and thus not visible.
Please suggest a solution - with the source code.
Please do not send me to docs like IViewCursor or ListCollectionView.localIndex - because I've read a lot of them in the past week already.
Thank you!