Tagged Questions
The filterfunction tag has no wiki summary.
8
votes
5answers
14k views
How can I get list of properties in an object in Actionscript?
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 ...
2
votes
4answers
3k views
removing an item from a filtered ArrayCollection
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 ...
1
vote
2answers
602 views
Flex - ArrayCollection - adding and removing a filterFunction
I am using Adobe Flash Builder 4 Premium. I have a mx:DataGrid and a s:TextInput, and I am trying to set up a search box that filters the DataGrid on each key press.
This page shows a nearly perfect ...
1
vote
2answers
285 views
filter functions problem
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 ...
1
vote
4answers
1k views
Filtering data shown on linechart in flex
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?
0
votes
0answers
9 views
Pass parameter to filter function in Spry framework?
I have a Spry filter function which works:
function ffRed(ds, row, index){ var c = row["color"]; return c == 'red' ? row : null; };
Which is toggled by function called from the click handler of a ...
0
votes
1answer
29 views
Using filterFunction to do filtering based on more than 1 parameter
Hello,
I have defined an XMLList which gets its data from the following XML file:
<modules>
<module hab_id="1" module_id="1" default="true" access="true" />
...
0
votes
3answers
90 views
String as a function name in as3 / Flex
I have a custom component that extends the spark list.
Inside that custom list, I'm looking to declare a public function that can be called from the main application to filter the result of the list ...
0
votes
2answers
217 views
Custom component containing filterFunction problem when using multiple instances
I have a main app that is using two instances of a custom MXML DropDownList component.
I included all the logic and queries within the custom component to query MySQL and fill an ArrayCollection with ...
0
votes
2answers
2k views
How to search a string within a flex datagrid dataProvider 4?
I tried using filterFunction not get any results, check out this example:
[Bindable]
public var SearchLoadlistOneDP:ArrayCollection;
public function SearchList():void {
...
0
votes
1answer
791 views
array collection filter flex
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?