<?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: Disappearing data in your itemRenderer?</title>
	<atom:link href="http://www.kalengibbons.com/blog/index.php/2008/10/disappearing-data-in-your-itemrenderer/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kalengibbons.com/blog/index.php/2008/10/disappearing-data-in-your-itemrenderer/</link>
	<description>The Dead Tree Blog</description>
	<lastBuildDate>Wed, 18 Jan 2012 08:30:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Kalen Gibbons</title>
		<link>http://www.kalengibbons.com/blog/index.php/2008/10/disappearing-data-in-your-itemrenderer/comment-page-1/#comment-17340</link>
		<dc:creator>Kalen Gibbons</dc:creator>
		<pubDate>Mon, 21 Feb 2011 20:44:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.kalengibbons.com/blog2/?p=48#comment-17340</guid>
		<description>Russ,
I believe Priyank is referring to the commitProperties() method of your component, as described here: http://livedocs.adobe.com/flex/3/html/help.html?content=ascomponents_advanced_2.html</description>
		<content:encoded><![CDATA[<p>Russ,<br />
I believe Priyank is referring to the commitProperties() method of your component, as described here: <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=ascomponents_advanced_2.html" rel="nofollow">http://livedocs.adobe.com/flex/3/html/help.html?content=ascomponents_advanced_2.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Russ</title>
		<link>http://www.kalengibbons.com/blog/index.php/2008/10/disappearing-data-in-your-itemrenderer/comment-page-1/#comment-17333</link>
		<dc:creator>Russ</dc:creator>
		<pubDate>Mon, 21 Feb 2011 16:52:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.kalengibbons.com/blog2/?p=48#comment-17333</guid>
		<description>So can anyone post a code example of Priyank&#039;s tip?  I just don&#039;t get the second part, &quot;and inside commit properties call validate now&quot;  what is the commit properties?</description>
		<content:encoded><![CDATA[<p>So can anyone post a code example of Priyank&#8217;s tip?  I just don&#8217;t get the second part, &#8220;and inside commit properties call validate now&#8221;  what is the commit properties?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kalen Gibbons</title>
		<link>http://www.kalengibbons.com/blog/index.php/2008/10/disappearing-data-in-your-itemrenderer/comment-page-1/#comment-9062</link>
		<dc:creator>Kalen Gibbons</dc:creator>
		<pubDate>Fri, 03 Sep 2010 19:45:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.kalengibbons.com/blog2/?p=48#comment-9062</guid>
		<description>Thanks for the tip Priyank.</description>
		<content:encoded><![CDATA[<p>Thanks for the tip Priyank.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Priyank Namdeo</title>
		<link>http://www.kalengibbons.com/blog/index.php/2008/10/disappearing-data-in-your-itemrenderer/comment-page-1/#comment-9032</link>
		<dc:creator>Priyank Namdeo</dc:creator>
		<pubDate>Fri, 03 Sep 2010 06:11:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.kalengibbons.com/blog2/?p=48#comment-9032</guid>
		<description>Above solution is good in some sense but not fruitful every time. To hit the nail, you should override the data setter and force commit properties using invalidateProperties(), and inside commit properties call validate now.  This works perfectly!</description>
		<content:encoded><![CDATA[<p>Above solution is good in some sense but not fruitful every time. To hit the nail, you should override the data setter and force commit properties using invalidateProperties(), and inside commit properties call validate now.  This works perfectly!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://www.kalengibbons.com/blog/index.php/2008/10/disappearing-data-in-your-itemrenderer/comment-page-1/#comment-7472</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Thu, 08 Jul 2010 13:25:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.kalengibbons.com/blog2/?p=48#comment-7472</guid>
		<description>This solution worked great for me. Thanks!

On my ItemRenderer:

					import mx.events.FlexEvent;
							
					private function init():void 
					{									
						this.addEventListener(FlexEvent.DATA_CHANGE,val);
					} 				
					
					private function val(evt:FlexEvent):void
					{
						this.validateNow();
					}</description>
		<content:encoded><![CDATA[<p>This solution worked great for me. Thanks!</p>
<p>On my ItemRenderer:</p>
<p>					import mx.events.FlexEvent;</p>
<p>					private function init():void<br />
					{<br />
						this.addEventListener(FlexEvent.DATA_CHANGE,val);<br />
					} 				</p>
<p>					private function val(evt:FlexEvent):void<br />
					{<br />
						this.validateNow();<br />
					}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Petitt</title>
		<link>http://www.kalengibbons.com/blog/index.php/2008/10/disappearing-data-in-your-itemrenderer/comment-page-1/#comment-1565</link>
		<dc:creator>Dan Petitt</dc:creator>
		<pubDate>Fri, 24 Apr 2009 05:15:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.kalengibbons.com/blog2/?p=48#comment-1565</guid>
		<description>Unfortunately this still doesnt work for me ... its much worse on my Vista x64 machine at work than my Win XP machine at home, but I still get the disappearing text. I even have an image to the left of the text that always appears and the row has a minheight the size of the image, but the text still disappears sometimes and gets progressively worse. This is a real bad bug as far as I am concerned, there must be a way around it that works completely as apps like Twhirl dont suffer this problem, I wonder how they are doing it.</description>
		<content:encoded><![CDATA[<p>Unfortunately this still doesnt work for me &#8230; its much worse on my Vista x64 machine at work than my Win XP machine at home, but I still get the disappearing text. I even have an image to the left of the text that always appears and the row has a minheight the size of the image, but the text still disappears sometimes and gets progressively worse. This is a real bad bug as far as I am concerned, there must be a way around it that works completely as apps like Twhirl dont suffer this problem, I wonder how they are doing it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Petitt</title>
		<link>http://www.kalengibbons.com/blog/index.php/2008/10/disappearing-data-in-your-itemrenderer/comment-page-1/#comment-1477</link>
		<dc:creator>Dan Petitt</dc:creator>
		<pubDate>Tue, 21 Apr 2009 14:55:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.kalengibbons.com/blog2/?p=48#comment-1477</guid>
		<description>So glad someone else was experiencing this ... I have been pulling my hair out with this thinking it was a bug I had caused or something. I will be trying the solution tonight when I get home! Thanks!!</description>
		<content:encoded><![CDATA[<p>So glad someone else was experiencing this &#8230; I have been pulling my hair out with this thinking it was a bug I had caused or something. I will be trying the solution tonight when I get home! Thanks!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kalen Gibbons</title>
		<link>http://www.kalengibbons.com/blog/index.php/2008/10/disappearing-data-in-your-itemrenderer/comment-page-1/#comment-7</link>
		<dc:creator>Kalen Gibbons</dc:creator>
		<pubDate>Tue, 09 Dec 2008 05:59:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.kalengibbons.com/blog2/?p=48#comment-7</guid>
		<description>Thanks a bunch Olivier, that worked like a charm. I created a new post to demonstrate what you suggested. You can find it at http://www.kalengibbons.com/blog/index.php/2008/10/disappearing-data-in-your-itemrenderer/.</description>
		<content:encoded><![CDATA[<p>Thanks a bunch Olivier, that worked like a charm. I created a new post to demonstrate what you suggested. You can find it at <a href="http://www.kalengibbons.com/blog/index.php/2008/10/disappearing-data-in-your-itemrenderer/" rel="nofollow">http://www.kalengibbons.com/blog/index.php/2008/10/disappearing-data-in-your-itemrenderer/</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Olivier Lalonde</title>
		<link>http://www.kalengibbons.com/blog/index.php/2008/10/disappearing-data-in-your-itemrenderer/comment-page-1/#comment-6</link>
		<dc:creator>Olivier Lalonde</dc:creator>
		<pubDate>Sat, 29 Nov 2008 04:12:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.kalengibbons.com/blog2/?p=48#comment-6</guid>
		<description>Try forcing validation when changing the data. In your renderer, at creation complete, add an event listener on &quot;dataChange&quot; and call validateNow() in the function used by the listener.</description>
		<content:encoded><![CDATA[<p>Try forcing validation when changing the data. In your renderer, at creation complete, add an event listener on &#8220;dataChange&#8221; and call validateNow() in the function used by the listener.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

