<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: Flex Tip of the Day: filterFunction for real time filtering of data</title>
	<atom:link href="http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/feed/" rel="self" type="application/rss+xml" />
	<link>http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/</link>
	<description>en route to a "richer" Internet</description>
	<pubDate>Tue, 06 Jan 2009 02:20:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Anish</title>
		<link>http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/comment-page-1/#comment-31283</link>
		<dc:creator>Anish</dc:creator>
		<pubDate>Thu, 30 Oct 2008 17:05:28 +0000</pubDate>
		<guid isPermaLink="false">http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/#comment-31283</guid>
		<description>I have been using filterFunction to filter out the data that I render on a TileList. Is there a way to have add and remove item effect for filterfunction too? I had tried having showEffect and hideEffect (wipeout and wipein) to the itemRenderer of the TileList. Even though it works, its add an unpredictable behavior to the items rendered on the TileList. Some items doesnt get listed and if i refresh, they come back again. Seems not a feasible solution. Have you been able to get around this problem Mrinal?</description>
		<content:encoded><![CDATA[<p>I have been using filterFunction to filter out the data that I render on a TileList. Is there a way to have add and remove item effect for filterfunction too? I had tried having showEffect and hideEffect (wipeout and wipein) to the itemRenderer of the TileList. Even though it works, its add an unpredictable behavior to the items rendered on the TileList. Some items doesnt get listed and if i refresh, they come back again. Seems not a feasible solution. Have you been able to get around this problem Mrinal?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mrinal Wadhwa</title>
		<link>http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/comment-page-1/#comment-28211</link>
		<dc:creator>Mrinal Wadhwa</dc:creator>
		<pubDate>Tue, 05 Aug 2008 15:44:34 +0000</pubDate>
		<guid isPermaLink="false">http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/#comment-28211</guid>
		<description>Vijay,

ListCollectionView is another way to do this provided you need multiple views ... my example above doesn't

Why exactly is that "the correct way" ?

Mrinal</description>
		<content:encoded><![CDATA[<p>Vijay,</p>
<p>ListCollectionView is another way to do this provided you need multiple views &#8230; my example above doesn&#8217;t</p>
<p>Why exactly is that &#8220;the correct way&#8221; ?</p>
<p>Mrinal</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vijay Mareddy</title>
		<link>http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/comment-page-1/#comment-28205</link>
		<dc:creator>Vijay Mareddy</dc:creator>
		<pubDate>Tue, 05 Aug 2008 13:48:39 +0000</pubDate>
		<guid isPermaLink="false">http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/#comment-28205</guid>
		<description>Correct way to use filterFunction ( Dont apply the filterFunction on the main dataProvider instead use a ListCollectionView) .  

ListCollView filtered = new ListCollectionView(myArrycoll);

Right click for view source:
http://www.preterra.com/flexsamples/listcollectionview/main.html</description>
		<content:encoded><![CDATA[<p>Correct way to use filterFunction ( Dont apply the filterFunction on the main dataProvider instead use a ListCollectionView) .  </p>
<p>ListCollView filtered = new ListCollectionView(myArrycoll);</p>
<p>Right click for view source:<br />
<a href="http://www.preterra.com/flexsamples/listcollectionview/main.html" rel="nofollow">http://www.preterra.com/flexsamples/listcollectionview/main.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arthurnasius Amanyire</title>
		<link>http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/comment-page-1/#comment-27900</link>
		<dc:creator>Arthurnasius Amanyire</dc:creator>
		<pubDate>Mon, 28 Jul 2008 09:22:39 +0000</pubDate>
		<guid isPermaLink="false">http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/#comment-27900</guid>
		<description>hi could you please help me out hear. i have a datagrid that gets data from a cfc through remote objects and i would like to filter it using a combo box and a slider, do you mind sharing an example on how to do this? thanks in advance</description>
		<content:encoded><![CDATA[<p>hi could you please help me out hear. i have a datagrid that gets data from a cfc through remote objects and i would like to filter it using a combo box and a slider, do you mind sharing an example on how to do this? thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yanhua</title>
		<link>http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/comment-page-1/#comment-13898</link>
		<dc:creator>Yanhua</dc:creator>
		<pubDate>Thu, 14 Feb 2008 03:19:18 +0000</pubDate>
		<guid isPermaLink="false">http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/#comment-13898</guid>
		<description>*my textinput filter is put in a comboBox.</description>
		<content:encoded><![CDATA[<p>*my textinput filter is put in a comboBox.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yanhua</title>
		<link>http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/comment-page-1/#comment-13897</link>
		<dc:creator>Yanhua</dc:creator>
		<pubDate>Thu, 14 Feb 2008 03:17:40 +0000</pubDate>
		<guid isPermaLink="false">http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/#comment-13897</guid>
		<description>I have an if else statement for my textinput filter. I tried to combine the above codes into the filter function(from example, filterForTestData). When i combined the two if else statements together, it can't work. 

It is either my textinput filter can work or the slider can work all depends which if else statement i put right after the .. boolean {.</description>
		<content:encoded><![CDATA[<p>I have an if else statement for my textinput filter. I tried to combine the above codes into the filter function(from example, filterForTestData). When i combined the two if else statements together, it can&#8217;t work. </p>
<p>It is either my textinput filter can work or the slider can work all depends which if else statement i put right after the .. boolean {.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mrinal Wadhwa</title>
		<link>http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/comment-page-1/#comment-13820</link>
		<dc:creator>Mrinal Wadhwa</dc:creator>
		<pubDate>Wed, 13 Feb 2008 05:03:14 +0000</pubDate>
		<guid isPermaLink="false">http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/#comment-13820</guid>
		<description>Yanhua,

Yes it would work with a TileList as well, filterFunction acts on your data provider, when the data provider changes whatever control is dependent on that data updates</description>
		<content:encoded><![CDATA[<p>Yanhua,</p>
<p>Yes it would work with a TileList as well, filterFunction acts on your data provider, when the data provider changes whatever control is dependent on that data updates</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yanhua</title>
		<link>http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/comment-page-1/#comment-13815</link>
		<dc:creator>Yanhua</dc:creator>
		<pubDate>Wed, 13 Feb 2008 03:46:24 +0000</pubDate>
		<guid isPermaLink="false">http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/#comment-13815</guid>
		<description>Hi, may i know does this works for TileList?</description>
		<content:encoded><![CDATA[<p>Hi, may i know does this works for TileList?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AgustÃ­n Abreu</title>
		<link>http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/comment-page-1/#comment-11722</link>
		<dc:creator>AgustÃ­n Abreu</dc:creator>
		<pubDate>Mon, 07 Jan 2008 01:36:13 +0000</pubDate>
		<guid isPermaLink="false">http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/#comment-11722</guid>
		<description>Yes you can create a ListCollectionView from the original ArrayCollection and filter the view.

Also the property list of ArrayCollecition gives you the raw data, unfiltered and unsorted.</description>
		<content:encoded><![CDATA[<p>Yes you can create a ListCollectionView from the original ArrayCollection and filter the view.</p>
<p>Also the property list of ArrayCollecition gives you the raw data, unfiltered and unsorted.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephen Bradley</title>
		<link>http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/comment-page-1/#comment-5077</link>
		<dc:creator>Stephen Bradley</dc:creator>
		<pubDate>Mon, 05 Nov 2007 12:26:36 +0000</pubDate>
		<guid isPermaLink="false">http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/#comment-5077</guid>
		<description>Hi this is a great implementation of filters. Is there a way to filter one version of an array or xmlcollection and still have access to the unfiltered version for use at the same time by a different component?
Thanks</description>
		<content:encoded><![CDATA[<p>Hi this is a great implementation of filters. Is there a way to filter one version of an array or xmlcollection and still have access to the unfiltered version for use at the same time by a different component?<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mrinal Wadhwa</title>
		<link>http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/comment-page-1/#comment-918</link>
		<dc:creator>Mrinal Wadhwa</dc:creator>
		<pubDate>Mon, 09 Jul 2007 05:47:37 +0000</pubDate>
		<guid isPermaLink="false">http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/#comment-918</guid>
		<description>Hi James,
The filter will be automatically applied when you addItem .. you do not need to refresh</description>
		<content:encoded><![CDATA[<p>Hi James,<br />
The filter will be automatically applied when you addItem .. you do not need to refresh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Chow</title>
		<link>http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/comment-page-1/#comment-912</link>
		<dc:creator>James Chow</dc:creator>
		<pubDate>Sun, 08 Jul 2007 23:30:23 +0000</pubDate>
		<guid isPermaLink="false">http://weblog.mrinalwadhwa.com/2007/07/07/flex-tip-of-the-day-filterfunction-for-real-time-filtering-of-data/#comment-912</guid>
		<description>Thanks for the tip,
Quick question, if i use "additem" on the collection do i need to refresh the collection to filter the new data? or will it do it automatically?</description>
		<content:encoded><![CDATA[<p>Thanks for the tip,<br />
Quick question, if i use &#8220;additem&#8221; on the collection do i need to refresh the collection to filter the new data? or will it do it automatically?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
