filter functions problem

Posted by Adam on Stack Overflow See other posts from Stack Overflow or by Adam
Published on 2010-03-13T20:10:16Z Indexed on 2010/03/13 20:15 UTC
Read the original article Hit count: 194

Filed under:
|
|
|
|

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?

Here's the example code

   productsCollection.filterFunctions =
[
 filterByPrice, filterByType,
 filterByCondition, filterByVendor
]

And this is what I'm trying

acData.filterFunction = [filterByStatus, filterByDate]

but with this code I get the following error message - 1067: Implicit coercion of a value of type Array to an unrelated type Function.

Why am I getting this error and how would I go about add multiple filters to my Array Collection?

Thanks!

© Stack Overflow or respective owner

Related posts about flex

Related posts about filterfunction