<?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: Using a CheckBox to filter items in a DataGrid in Flex</title>
	<atom:link href="http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Sun, 12 Feb 2012 14:19:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Christian Mellor</title>
		<link>http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/comment-page-1/#comment-7251</link>
		<dc:creator>Christian Mellor</dc:creator>
		<pubDate>Sat, 13 Mar 2010 18:13:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/#comment-7251</guid>
		<description>I was wondering if anybody had any tutorials on filtering a dataGrid using a combobox?</description>
		<content:encoded><![CDATA[<p>I was wondering if anybody had any tutorials on filtering a dataGrid using a combobox?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flexicious</title>
		<link>http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/comment-page-1/#comment-6529</link>
		<dc:creator>Flexicious</dc:creator>
		<pubDate>Sat, 05 Dec 2009 22:45:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/#comment-6529</guid>
		<description>If you need a custom component that does all of the nitty gritty of datagrid filter, pager, footer, and sort, please look at http://www.flexicious.com or http://www.flexdatagrid.com...</description>
		<content:encoded><![CDATA[<p>If you need a custom component that does all of the nitty gritty of datagrid filter, pager, footer, and sort, please look at <a href="http://www.flexicious.com" rel="nofollow">http://www.flexicious.com</a> or <a href="http://www.flexdatagrid.com.." rel="nofollow">http://www.flexdatagrid.com..</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flex Blog</title>
		<link>http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/comment-page-1/#comment-6381</link>
		<dc:creator>Flex Blog</dc:creator>
		<pubDate>Tue, 17 Nov 2009 18:32:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/#comment-6381</guid>
		<description>This is a great example. If you are looking for a way &lt;a href=&quot;http://www.flex-blog.com/arraycollection-filter-example/&quot; rel=&quot;nofollow&quot;&gt;filter an ArrayCollection using an TextInput&lt;/a&gt; please visit my weblog.</description>
		<content:encoded><![CDATA[<p>This is a great example. If you are looking for a way <a href="http://www.flex-blog.com/arraycollection-filter-example/" rel="nofollow">filter an ArrayCollection using an TextInput</a> please visit my weblog.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/comment-page-1/#comment-5540</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Wed, 02 Sep 2009 15:15:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/#comment-5540</guid>
		<description>@Javier Gomez,

Try something like this:
&lt;pre lang=&quot;mxml&quot;&gt;
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;mx:Application xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot; layout=&quot;absolute&quot; color=&quot;#000000&quot;
                fontWeight=&quot;bold&quot; width=&quot;100%&quot; height=&quot;100%&quot; alpha=&quot;1.0&quot; backgroundGradientAlphas=&quot;[1.0, 1.0]&quot;
                backgroundGradientColors=&quot;[#FFFFFF, #FFFFFF]&quot;
                initialize=&quot;proyects.send();&quot;&gt;

    &lt;mx:Script&gt;
        &lt;![CDATA[
            import mx.controls.Alert;

            private function toggleCategory(type:String):void {
                xmlListColl.refresh();
            }

            private function xmlListColl_filterFunc(item:Object):Boolean {
                if ((item.@type == &quot;restaurant&quot;) &amp;&amp; restaurantCh.selected) {
                    return true;
                }
                if ((item.@type == &quot;bar&quot;) &amp;&amp; barCh.selected) {
                    return true;
                }
                if ((item.@type == &quot;disco&quot;) &amp;&amp; discoCh.selected) {
                    return true;
                }
                return false;
            }
        ]]&gt;
    &lt;/mx:Script&gt;

    &lt;mx:XMLListCollection id=&quot;xmlListColl&quot; source=&quot;{proyects.lastResult.marker}&quot; filterFunction=&quot;xmlListColl_filterFunc&quot; /&gt;

    &lt;mx:HTTPService id=&quot;proyects&quot; url=&quot;markersall.xml&quot; resultFormat=&quot;e4x&quot; /&gt;

    &lt;mx:Panel width=&quot;220&quot; height=&quot;136&quot; layout=&quot;absolute&quot; title=&quot;Tipo de proyectos&quot; cornerRadius=&quot;10&quot; right=&quot;10&quot; top=&quot;40&quot; borderColor=&quot;#FF7225&quot; backgroundColor=&quot;#FFC34E&quot; alpha=&quot;1.0&quot; borderAlpha=&quot;100&quot;&gt;
        &lt;mx:CheckBox id=&quot;restaurantCh&quot; x=&quot;10&quot; y=&quot;10&quot; label=&quot;Proyectos en venta&quot; fillAlphas=&quot;[1.0, 1.0, 1.0, 1.0]&quot; fillColors=&quot;[#F27CE6, #FF00FF, #FF00FF, #FF00FF]&quot;
                     selected=&quot;true&quot; change=&quot;toggleCategory(&#039;restaurant&#039;);&quot; borderColor=&quot;#000000&quot;/&gt;
        &lt;mx:CheckBox id=&quot;barCh&quot; x=&quot;10&quot; y=&quot;36&quot; label=&quot;Proyectos en desarrollo&quot; fillAlphas=&quot;[1.0, 1.0, 1.0, 1.0]&quot; fillColors=&quot;[#A6ACFF, #A6ACFF]&quot;
                     selected=&quot;true&quot; change=&quot;toggleCategory(&#039;bar&#039;);&quot; borderColor=&quot;#000000&quot;/&gt;
        &lt;mx:CheckBox id=&quot;discoCh&quot; x=&quot;10&quot; y=&quot;62&quot; label=&quot;Proyectos terminados&quot; fillAlphas=&quot;[1.0, 1.0, 1.0, 1.0]&quot; fillColors=&quot;[#927474, #927474, #927474, #927474]&quot;
                     selected=&quot;true&quot; change=&quot;toggleCategory(&#039;disco&#039;);&quot; borderColor=&quot;#000000&quot;/&gt;
    &lt;/mx:Panel&gt;
    &lt;mx:Panel width=&quot;220&quot; layout=&quot;absolute&quot; title=&quot;Proyectos&quot; cornerRadius=&quot;10&quot; right=&quot;10&quot; borderColor=&quot;#FF7225&quot; bottom=&quot;20&quot; top=&quot;185&quot; borderAlpha=&quot;100&quot;&gt;
        &lt;mx:List x=&quot;-0.05&quot; y=&quot;0.1&quot; dataProvider=&quot;{xmlListColl}&quot; enabled=&quot;true&quot; labelField=&quot;@name&quot; width=&quot;199.6&quot; height=&quot;100%&quot; backgroundColor=&quot;#FFC34E&quot; borderThickness=&quot;0&quot; themeColor=&quot;#CACACA&quot; id=&quot;proyectlist&quot; /&gt;
    &lt;/mx:Panel&gt;

&lt;/mx:Application&gt;
&lt;/pre&gt;

Peter</description>
		<content:encoded><![CDATA[<p>@Javier Gomez,</p>
<p>Try something like this:</p>

<div class="wp_syntax"><div class="code"><pre class="mxml" style="font-family:monospace;"><span style="color: #000000;">&lt;?xml version=<span style="color: #ff0000;">&quot;1.0&quot;</span> encoding=<span style="color: #ff0000;">&quot;utf-8&quot;</span>?<span style="color: #7400FF;">&gt;</span></span>
<span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Application</span> xmlns:mx=<span style="color: #ff0000;">&quot;http://www.adobe.com/2006/mxml&quot;</span> layout=<span style="color: #ff0000;">&quot;absolute&quot;</span> color=<span style="color: #ff0000;">&quot;#000000&quot;</span></span>
<span style="color: #000000;">                fontWeight=<span style="color: #ff0000;">&quot;bold&quot;</span> width=<span style="color: #ff0000;">&quot;100%&quot;</span> height=<span style="color: #ff0000;">&quot;100%&quot;</span> alpha=<span style="color: #ff0000;">&quot;1.0&quot;</span> backgroundGradientAlphas=<span style="color: #ff0000;">&quot;[1.0, 1.0]&quot;</span></span>
<span style="color: #000000;">                backgroundGradientColors=<span style="color: #ff0000;">&quot;[#FFFFFF, #FFFFFF]&quot;</span></span>
<span style="color: #000000;">                initialize=<span style="color: #ff0000;">&quot;proyects.send();&quot;</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
    <span style="color: #339933;">&lt;mx:Script&gt;</span>
<span style="color: #339933;">        &lt;![CDATA[</span>
<span style="color: #339933;">            import mx.controls.Alert;</span>
&nbsp;
<span style="color: #339933;">            private function toggleCategory(type:String):void {</span>
<span style="color: #339933;">                xmlListColl.refresh();</span>
<span style="color: #339933;">            }</span>
&nbsp;
<span style="color: #339933;">            private function xmlListColl_filterFunc(item:Object):Boolean {</span>
<span style="color: #339933;">                if ((item.@type == &quot;restaurant&quot;) &amp;&amp; restaurantCh.selected) {</span>
<span style="color: #339933;">                    return true;</span>
<span style="color: #339933;">                }</span>
<span style="color: #339933;">                if ((item.@type == &quot;bar&quot;) &amp;&amp; barCh.selected) {</span>
<span style="color: #339933;">                    return true;</span>
<span style="color: #339933;">                }</span>
<span style="color: #339933;">                if ((item.@type == &quot;disco&quot;) &amp;&amp; discoCh.selected) {</span>
<span style="color: #339933;">                    return true;</span>
<span style="color: #339933;">                }</span>
<span style="color: #339933;">                return false;</span>
<span style="color: #339933;">            }</span>
<span style="color: #339933;">        ]]&gt;</span>
<span style="color: #339933;">    &lt;/mx:Script&gt;</span>
&nbsp;
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:XMLListCollection</span> id=<span style="color: #ff0000;">&quot;xmlListColl&quot;</span> source=<span style="color: #ff0000;">&quot;{proyects.lastResult.marker}&quot;</span> filterFunction=<span style="color: #ff0000;">&quot;xmlListColl_filterFunc&quot;</span> <span style="color: #7400FF;">/&gt;</span></span>
&nbsp;
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:HTTPService</span> id=<span style="color: #ff0000;">&quot;proyects&quot;</span> url=<span style="color: #ff0000;">&quot;markersall.xml&quot;</span> resultFormat=<span style="color: #ff0000;">&quot;e4x&quot;</span> <span style="color: #7400FF;">/&gt;</span></span>
&nbsp;
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Panel</span> width=<span style="color: #ff0000;">&quot;220&quot;</span> height=<span style="color: #ff0000;">&quot;136&quot;</span> layout=<span style="color: #ff0000;">&quot;absolute&quot;</span> title=<span style="color: #ff0000;">&quot;Tipo de proyectos&quot;</span> cornerRadius=<span style="color: #ff0000;">&quot;10&quot;</span> right=<span style="color: #ff0000;">&quot;10&quot;</span> top=<span style="color: #ff0000;">&quot;40&quot;</span> borderColor=<span style="color: #ff0000;">&quot;#FF7225&quot;</span> backgroundColor=<span style="color: #ff0000;">&quot;#FFC34E&quot;</span> alpha=<span style="color: #ff0000;">&quot;1.0&quot;</span> borderAlpha=<span style="color: #ff0000;">&quot;100&quot;</span><span style="color: #7400FF;">&gt;</span></span>
        <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:CheckBox</span> id=<span style="color: #ff0000;">&quot;restaurantCh&quot;</span> x=<span style="color: #ff0000;">&quot;10&quot;</span> y=<span style="color: #ff0000;">&quot;10&quot;</span> label=<span style="color: #ff0000;">&quot;Proyectos en venta&quot;</span> fillAlphas=<span style="color: #ff0000;">&quot;[1.0, 1.0, 1.0, 1.0]&quot;</span> fillColors=<span style="color: #ff0000;">&quot;[#F27CE6, #FF00FF, #FF00FF, #FF00FF]&quot;</span></span>
<span style="color: #000000;">                     selected=<span style="color: #ff0000;">&quot;true&quot;</span> change=<span style="color: #ff0000;">&quot;toggleCategory('restaurant');&quot;</span> borderColor=<span style="color: #ff0000;">&quot;#000000&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
        <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:CheckBox</span> id=<span style="color: #ff0000;">&quot;barCh&quot;</span> x=<span style="color: #ff0000;">&quot;10&quot;</span> y=<span style="color: #ff0000;">&quot;36&quot;</span> label=<span style="color: #ff0000;">&quot;Proyectos en desarrollo&quot;</span> fillAlphas=<span style="color: #ff0000;">&quot;[1.0, 1.0, 1.0, 1.0]&quot;</span> fillColors=<span style="color: #ff0000;">&quot;[#A6ACFF, #A6ACFF]&quot;</span></span>
<span style="color: #000000;">                     selected=<span style="color: #ff0000;">&quot;true&quot;</span> change=<span style="color: #ff0000;">&quot;toggleCategory('bar');&quot;</span> borderColor=<span style="color: #ff0000;">&quot;#000000&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
        <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:CheckBox</span> id=<span style="color: #ff0000;">&quot;discoCh&quot;</span> x=<span style="color: #ff0000;">&quot;10&quot;</span> y=<span style="color: #ff0000;">&quot;62&quot;</span> label=<span style="color: #ff0000;">&quot;Proyectos terminados&quot;</span> fillAlphas=<span style="color: #ff0000;">&quot;[1.0, 1.0, 1.0, 1.0]&quot;</span> fillColors=<span style="color: #ff0000;">&quot;[#927474, #927474, #927474, #927474]&quot;</span></span>
<span style="color: #000000;">                     selected=<span style="color: #ff0000;">&quot;true&quot;</span> change=<span style="color: #ff0000;">&quot;toggleCategory('disco');&quot;</span> borderColor=<span style="color: #ff0000;">&quot;#000000&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:Panel</span><span style="color: #7400FF;">&gt;</span></span>
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Panel</span> width=<span style="color: #ff0000;">&quot;220&quot;</span> layout=<span style="color: #ff0000;">&quot;absolute&quot;</span> title=<span style="color: #ff0000;">&quot;Proyectos&quot;</span> cornerRadius=<span style="color: #ff0000;">&quot;10&quot;</span> right=<span style="color: #ff0000;">&quot;10&quot;</span> borderColor=<span style="color: #ff0000;">&quot;#FF7225&quot;</span> bottom=<span style="color: #ff0000;">&quot;20&quot;</span> top=<span style="color: #ff0000;">&quot;185&quot;</span> borderAlpha=<span style="color: #ff0000;">&quot;100&quot;</span><span style="color: #7400FF;">&gt;</span></span>
        <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:List</span> x=<span style="color: #ff0000;">&quot;-0.05&quot;</span> y=<span style="color: #ff0000;">&quot;0.1&quot;</span> dataProvider=<span style="color: #ff0000;">&quot;{xmlListColl}&quot;</span> enabled=<span style="color: #ff0000;">&quot;true&quot;</span> labelField=<span style="color: #ff0000;">&quot;@name&quot;</span> width=<span style="color: #ff0000;">&quot;199.6&quot;</span> height=<span style="color: #ff0000;">&quot;100%&quot;</span> backgroundColor=<span style="color: #ff0000;">&quot;#FFC34E&quot;</span> borderThickness=<span style="color: #ff0000;">&quot;0&quot;</span> themeColor=<span style="color: #ff0000;">&quot;#CACACA&quot;</span> id=<span style="color: #ff0000;">&quot;proyectlist&quot;</span> <span style="color: #7400FF;">/&gt;</span></span>
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:Panel</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
<span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:Application</span><span style="color: #7400FF;">&gt;</span></span></pre></div></div>

<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Javier Gomez</title>
		<link>http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/comment-page-1/#comment-5538</link>
		<dc:creator>Javier Gomez</dc:creator>
		<pubDate>Wed, 02 Sep 2009 11:52:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/#comment-5538</guid>
		<description>Hello please someone help me with this code.

http://promotora.idataweb.com/google/final/index2.html

I need to filter the List with the checkboxes.

Thanks.</description>
		<content:encoded><![CDATA[<p>Hello please someone help me with this code.</p>
<p><a href="http://promotora.idataweb.com/google/final/index2.html" rel="nofollow">http://promotora.idataweb.com/google/final/index2.html</a></p>
<p>I need to filter the List with the checkboxes.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Iwo Banas</title>
		<link>http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/comment-page-1/#comment-4327</link>
		<dc:creator>Iwo Banas</dc:creator>
		<pubDate>Wed, 01 Jul 2009 13:43:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/#comment-4327</guid>
		<description>Hi,

I am working on open source, reusable extension of Flex 3 DataGrid to enable client-side filtering and searching. My solution includes filters using multiple CheckBoxes, TextInput, Slider and more…
You can find it at
http://www.iwobanas.com/2009/06/datagrid-with-client-side-filtering-and-searching/

I am looking forward any comments and suggestions from you!

Cheers,
Iwo Banaś</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am working on open source, reusable extension of Flex 3 DataGrid to enable client-side filtering and searching. My solution includes filters using multiple CheckBoxes, TextInput, Slider and more…<br />
You can find it at<br />
<a href="http://www.iwobanas.com/2009/06/datagrid-with-client-side-filtering-and-searching/" rel="nofollow">http://www.iwobanas.com/2009/06/datagrid-with-client-side-filtering-and-searching/</a></p>
<p>I am looking forward any comments and suggestions from you!</p>
<p>Cheers,<br />
Iwo Banaś</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Javier</title>
		<link>http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/comment-page-1/#comment-2867</link>
		<dc:creator>Javier</dc:creator>
		<pubDate>Fri, 08 May 2009 03:07:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/#comment-2867</guid>
		<description>Stefan Bistram and site admin:

Great examples, i needed something to search a data grid, but filtering the ArrayCollection resulted in a much more elegant solution.

Thanks</description>
		<content:encoded><![CDATA[<p>Stefan Bistram and site admin:</p>
<p>Great examples, i needed something to search a data grid, but filtering the ArrayCollection resulted in a much more elegant solution.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/comment-page-1/#comment-2870</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Sun, 12 Apr 2009 16:32:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/#comment-2870</guid>
		<description>Good example. I&#039;m using a XMLListCollection and have filtering working. However I want to add the same type of label you have for the panel status: {arrColl.length}/{arrColl.source.length}. My XMLListCollection is called tixXML and I can get the displayed size (tixXML.length) however how do I get the length of the unfiltered tixXML? After I filter the results tixXML.length changes to the number of displayed results however I also want the length of the unfiltered results? Do I need to set a var to the original amount or is there a property I can access?

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Good example. I&#8217;m using a XMLListCollection and have filtering working. However I want to add the same type of label you have for the panel status: {arrColl.length}/{arrColl.source.length}. My XMLListCollection is called tixXML and I can get the displayed size (tixXML.length) however how do I get the length of the unfiltered tixXML? After I filter the results tixXML.length changes to the number of displayed results however I also want the length of the unfiltered results? Do I need to set a var to the original amount or is there a property I can access?</p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kurt</title>
		<link>http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/comment-page-1/#comment-2864</link>
		<dc:creator>Kurt</dc:creator>
		<pubDate>Tue, 07 Apr 2009 21:17:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/#comment-2864</guid>
		<description>what about using a combo box to filter? I tried to set one up, but it only repeats the first item that I want filtered it doesn&#039;t check the rest of the XML file.</description>
		<content:encoded><![CDATA[<p>what about using a combo box to filter? I tried to set one up, but it only repeats the first item that I want filtered it doesn&#8217;t check the rest of the XML file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FlexGuy</title>
		<link>http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/comment-page-1/#comment-2869</link>
		<dc:creator>FlexGuy</dc:creator>
		<pubDate>Mon, 02 Mar 2009 18:23:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/03/12/using-a-combobox-to-filter-items-in-a-datagrid-in-flex/#comment-2869</guid>
		<description>I&#039;ve been using many of your articles to aid in my flex development. Cudos to you for your posts. Keep them coming!</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been using many of your articles to aid in my flex development. Cudos to you for your posts. Keep them coming!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

