I have a dataprovider and a filterfunction for my array that's assigned to my dataprovider.
How can I get a list of the properties that are in each row of the dataprovider (item.data) as it gets passed to the filterfunction?
For instance, if my object contained:
Object
name
email
address
Then I would want, in my filterfunction ...
Hi all,
I'm having some issues when calling getItemIndex on an ArrayCollection with a filterFunction set.
I do something like myAC.removeItemAt(myAC.getItemIndex(myObject)), which works fine when the filtering hasn't been applied. As soon as filtering is applied, getItemIndex seems to return -1 in every case.
Has anyone come across...
Hi guys, i am working on a line chart on flex which enable me to view the progress of data according to the year. I have tried using a slider to filter but it doesn't seemed to work. any help please?
...
hey guys, is it possible for me to filter only a certain column in a arraycollection but still displaying the other values in a datagrid?
...
I'm working on a search component for an app I'm working on and I needed to add some filters to it. I've found an example and got the first filter working fine.
Now I'm trying to add a second filter I'm running into problems... In the example I found they use filterFunctions, but I only get an option for filterFunction, why is that?
He...
Hello friends, I tried using filterFunction not get any results, check out this example:
[Bindable]
public var SearchLoadlistOneDP:ArrayCollection;
public function SearchList():void {
SearchLoadlistOneDP.filterFunction = filter;
SearchLoadlistOneDP.refresh()
}
public function filter(item:Object):Boolean
{
var beginsWithStrin...