<?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: Filter an ArrayCollection and don&#8217;t lose the original data</title>
	<atom:link href="http://www.albertx.mx/blog/filter-an-arraycollection-and-dont-lose-the-original-data/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.albertx.mx/blog/filter-an-arraycollection-and-dont-lose-the-original-data/</link>
	<description>An Information Security library</description>
	<lastBuildDate>Fri, 23 Dec 2011 09:22:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	<item>
		<title>By: AlbertG</title>
		<link>http://www.albertx.mx/blog/filter-an-arraycollection-and-dont-lose-the-original-data/comment-page-1/#comment-48</link>
		<dc:creator>AlbertG</dc:creator>
		<pubDate>Wed, 25 Nov 2009 20:28:43 +0000</pubDate>
		<guid isPermaLink="false">http://x-geom.net/blog/?p=86#comment-48</guid>
		<description>Are the 2 DataService instances pointing to the same ArrayCollection instance with the fill method of each one ???I mean. How do you fill the elements in each DataService ?? with the fill method ?? and is the fill method using the same ArrayCollection instance ?</description>
		<content:encoded><![CDATA[<p>Are the 2 DataService instances pointing to the same ArrayCollection instance with the fill method of each one ???I mean. How do you fill the elements in each DataService ?? with the fill method ?? and is the fill method using the same ArrayCollection instance ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: acnesiac</title>
		<link>http://www.albertx.mx/blog/filter-an-arraycollection-and-dont-lose-the-original-data/comment-page-1/#comment-47</link>
		<dc:creator>acnesiac</dc:creator>
		<pubDate>Wed, 25 Nov 2009 18:43:25 +0000</pubDate>
		<guid isPermaLink="false">http://x-geom.net/blog/?p=86#comment-47</guid>
		<description>I have two dataServices pointing to the same destinationi got two buttons with a binding to the property text with the flag  commitRequired  for every DSand if i make a change in the list associated to dsCompany , there is a change in dsCompanyTwo.commitRequired too!!why happen this?Best regards</description>
		<content:encoded><![CDATA[<p>I have two dataServices pointing to the same destinationi got two buttons with a binding to the property text with the flag  commitRequired  for every DSand if i make a change in the list associated to dsCompany , there is a change in dsCompanyTwo.commitRequired too!!why happen this?Best regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael REMY</title>
		<link>http://www.albertx.mx/blog/filter-an-arraycollection-and-dont-lose-the-original-data/comment-page-1/#comment-46</link>
		<dc:creator>Michael REMY</dc:creator>
		<pubDate>Fri, 21 Aug 2009 17:00:26 +0000</pubDate>
		<guid isPermaLink="false">http://x-geom.net/blog/?p=86#comment-46</guid>
		<description>nice !i spend 3 hours to understand why my original array were not updated while i was apllying a filter on its Arraycollection !so it is normal !!!!!!!!!!!!!!!!!!!!!!!!for the people like me who want synchronise the Arraycollection and the  Array source, you ca do this after the refresh :myarray=mycollection.toArray();but don&#039;t forget you will lost the orginal value (that what i wanted in my case).</description>
		<content:encoded><![CDATA[<p>nice !i spend 3 hours to understand why my original array were not updated while i was apllying a filter on its Arraycollection !so it is normal !!!!!!!!!!!!!!!!!!!!!!!!for the people like me who want synchronise the Arraycollection and the  Array source, you ca do this after the refresh :myarray=mycollection.toArray();but don&#8217;t forget you will lost the orginal value (that what i wanted in my case).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard Leggett</title>
		<link>http://www.albertx.mx/blog/filter-an-arraycollection-and-dont-lose-the-original-data/comment-page-1/#comment-45</link>
		<dc:creator>Richard Leggett</dc:creator>
		<pubDate>Sun, 17 May 2009 16:17:57 +0000</pubDate>
		<guid isPermaLink="false">http://x-geom.net/blog/?p=86#comment-45</guid>
		<description>Also if you are working with ArrayCollections that contain other ArrayCollections (i.e. hierarchical data), you encounter an even trickier situation because you cannot just access the &quot;source&quot; property to get the original data.But depending on how you are using the data, there are ways to safely filter nested ArrayCollections without modifying the original source:http://richardleggett.co.uk/blog/index.php/2009/05/11/filtering-hierachical-data-in-flex-itree</description>
		<content:encoded><![CDATA[<p>Also if you are working with ArrayCollections that contain other ArrayCollections (i.e. hierarchical data), you encounter an even trickier situation because you cannot just access the &#8220;source&#8221; property to get the original data.But depending on how you are using the data, there are ways to safely filter nested ArrayCollections without modifying the original source:<a href="http://richardleggett.co.uk/blog/index.php/2009/05/11/filtering-hierachical-data-in-flex-itree" rel="nofollow">http://richardleggett.co.uk/blog/index.php/2009/05/11/filtering-hierachical-data-in-flex-itree</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://www.albertx.mx/blog/filter-an-arraycollection-and-dont-lose-the-original-data/comment-page-1/#comment-44</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Sun, 03 May 2009 00:32:18 +0000</pubDate>
		<guid isPermaLink="false">http://x-geom.net/blog/?p=86#comment-44</guid>
		<description>Nice article.  I thought I&#039;d add that if you have an ArrayCollection that you want to filter and/or sort without modifying the original ArrayCollection, you can use the ListCollectionView class and modify how you can view that ArrayCollection without modifying the original ArrayCollection or Array.</description>
		<content:encoded><![CDATA[<p>Nice article.  I thought I&#8217;d add that if you have an ArrayCollection that you want to filter and/or sort without modifying the original ArrayCollection, you can use the ListCollectionView class and modify how you can view that ArrayCollection without modifying the original ArrayCollection or Array.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eldervaz</title>
		<link>http://www.albertx.mx/blog/filter-an-arraycollection-and-dont-lose-the-original-data/comment-page-1/#comment-43</link>
		<dc:creator>eldervaz</dc:creator>
		<pubDate>Sat, 02 May 2009 17:57:19 +0000</pubDate>
		<guid isPermaLink="false">http://x-geom.net/blog/?p=86#comment-43</guid>
		<description>wow, very good Alberto ^^ this is a genial post</description>
		<content:encoded><![CDATA[<p>wow, very good Alberto ^^ this is a genial post</p>
]]></content:encoded>
	</item>
</channel>
</rss>

