<?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: Creating custom List renderers, the complete guide (Part I)</title>
	<atom:link href="http://www.arpitonline.com/blog/2008/01/22/creating-custom-list-renderers-the-complete-guide-part-i/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.arpitonline.com/blog/2008/01/22/creating-custom-list-renderers-the-complete-guide-part-i/</link>
	<description>"I write pretty software"</description>
	<lastBuildDate>Fri, 05 Mar 2010 05:17:23 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: David Walsh</title>
		<link>http://www.arpitonline.com/blog/2008/01/22/creating-custom-list-renderers-the-complete-guide-part-i/comment-page-1/#comment-60318</link>
		<dc:creator>David Walsh</dc:creator>
		<pubDate>Wed, 29 Jul 2009 07:49:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.arpitonline.com/blog/?p=107#comment-60318</guid>
		<description>Again, this is a huge help and resource. Using the clarity gained here, I&#039;m 99% functional with a custom, lightweight renderer. I&#039;m hitting a wall and curious if there&#039;s a &#039;magic bullet&#039; or simple answer...

I&#039;m swapping my styleName property based on the type of data object.  It works perfectly. I&#039;m also attempting to vary the row&#039;s height based on that same idea. So, for example, if the object is type A, the row height is 100 - and if type B, the height is 300.

I&#039;m able to do all of this sizing to elements *within* the row (eg: the container holding my various UI elements) but the actual row height always remains constant.

Is there a single phase at which I need to invalidate size to achieve that (set, commit props, measure, etc)? I feel like I&#039;m a single line of code away from having a flawless, wicked fast, variable height itemrenderer.

Drop a note if anything comes to mind. If it&#039;s more complex or I haven&#039;t given enough detail, no worries.

Cheers and thanks again for the resource.

David (@dvdwlsh)</description>
		<content:encoded><![CDATA[<p>Again, this is a huge help and resource. Using the clarity gained here, I&#8217;m 99% functional with a custom, lightweight renderer. I&#8217;m hitting a wall and curious if there&#8217;s a &#8216;magic bullet&#8217; or simple answer&#8230;</p>
<p>I&#8217;m swapping my styleName property based on the type of data object.  It works perfectly. I&#8217;m also attempting to vary the row&#8217;s height based on that same idea. So, for example, if the object is type A, the row height is 100 &#8211; and if type B, the height is 300.</p>
<p>I&#8217;m able to do all of this sizing to elements *within* the row (eg: the container holding my various UI elements) but the actual row height always remains constant.</p>
<p>Is there a single phase at which I need to invalidate size to achieve that (set, commit props, measure, etc)? I feel like I&#8217;m a single line of code away from having a flawless, wicked fast, variable height itemrenderer.</p>
<p>Drop a note if anything comes to mind. If it&#8217;s more complex or I haven&#8217;t given enough detail, no worries.</p>
<p>Cheers and thanks again for the resource.</p>
<p>David (@dvdwlsh)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Riguardatta</title>
		<link>http://www.arpitonline.com/blog/2008/01/22/creating-custom-list-renderers-the-complete-guide-part-i/comment-page-1/#comment-58829</link>
		<dc:creator>Riguardatta</dc:creator>
		<pubDate>Wed, 08 Jul 2009 23:47:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.arpitonline.com/blog/?p=107#comment-58829</guid>
		<description>Man, that’s great…Thanks for providing such a good info………</description>
		<content:encoded><![CDATA[<p>Man, that’s great…Thanks for providing such a good info………</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: arpit</title>
		<link>http://www.arpitonline.com/blog/2008/01/22/creating-custom-list-renderers-the-complete-guide-part-i/comment-page-1/#comment-56667</link>
		<dc:creator>arpit</dc:creator>
		<pubDate>Wed, 27 May 2009 15:06:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.arpitonline.com/blog/?p=107#comment-56667</guid>
		<description>@Kevin
Yes making the data source bindable will remove the warnings but it actually will make the application a little heavier since Flex Builder will generate the data binding code. I often dont bind data that only needs to be set once. Doing it in Actionscript wont give you any warnings at all (list.dataProvider = someArray)</description>
		<content:encoded><![CDATA[<p>@Kevin<br />
Yes making the data source bindable will remove the warnings but it actually will make the application a little heavier since Flex Builder will generate the data binding code. I often dont bind data that only needs to be set once. Doing it in Actionscript wont give you any warnings at all (list.dataProvider = someArray)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Yeandel</title>
		<link>http://www.arpitonline.com/blog/2008/01/22/creating-custom-list-renderers-the-complete-guide-part-i/comment-page-1/#comment-56660</link>
		<dc:creator>Kevin Yeandel</dc:creator>
		<pubDate>Wed, 27 May 2009 12:10:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.arpitonline.com/blog/?p=107#comment-56660</guid>
		<description>Hi
Thanks for this.
Correct me if I am wrong but for those novices like me :o) In the source, db needs to be [Bindable] to avoid &quot;Data binding will not be able to detect assignments to db&quot; warnings.

(I&#039;m just here to learn so apologies if wrong). Appreciate these examples.</description>
		<content:encoded><![CDATA[<p>Hi<br />
Thanks for this.<br />
Correct me if I am wrong but for those novices like me <img src='http://www.arpitonline.com/blog/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> ) In the source, db needs to be [Bindable] to avoid &#8220;Data binding will not be able to detect assignments to db&#8221; warnings.</p>
<p>(I&#8217;m just here to learn so apologies if wrong). Appreciate these examples.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: arpit</title>
		<link>http://www.arpitonline.com/blog/2008/01/22/creating-custom-list-renderers-the-complete-guide-part-i/comment-page-1/#comment-52389</link>
		<dc:creator>arpit</dc:creator>
		<pubDate>Sat, 21 Mar 2009 03:46:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.arpitonline.com/blog/?p=107#comment-52389</guid>
		<description>@smith, Thats an interesting example but using a VBox will not use the itemRenderer reuse strategy that Lists use that make them efficient for a lot of data. The simpler way, if smooth scrolling is all you are looking for is by just using a mx:Repeater.</description>
		<content:encoded><![CDATA[<p>@smith, Thats an interesting example but using a VBox will not use the itemRenderer reuse strategy that Lists use that make them efficient for a lot of data. The simpler way, if smooth scrolling is all you are looking for is by just using a mx:Repeater.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: smith</title>
		<link>http://www.arpitonline.com/blog/2008/01/22/creating-custom-list-renderers-the-complete-guide-part-i/comment-page-1/#comment-52388</link>
		<dc:creator>smith</dc:creator>
		<pubDate>Sat, 21 Mar 2009 03:31:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.arpitonline.com/blog/?p=107#comment-52388</guid>
		<description>If your&#039;re looking for smooth scrolling then check this site:

http://www.thomasdecaux.net/flex-components/different-scroll-solution-than-classic-flex-scrollbars.html

I haven&#039;t tried it yet, but it looks very nice!</description>
		<content:encoded><![CDATA[<p>If your&#8217;re looking for smooth scrolling then check this site:</p>
<p><a href="http://www.thomasdecaux.net/flex-components/different-scroll-solution-than-classic-flex-scrollbars.html" rel="nofollow">http://www.thomasdecaux.net/flex-components/different-scroll-solution-than-classic-flex-scrollbars.html</a></p>
<p>I haven&#8217;t tried it yet, but it looks very nice!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon Bailey</title>
		<link>http://www.arpitonline.com/blog/2008/01/22/creating-custom-list-renderers-the-complete-guide-part-i/comment-page-1/#comment-29572</link>
		<dc:creator>Simon Bailey</dc:creator>
		<pubDate>Tue, 25 Mar 2008 20:15:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.arpitonline.com/blog/?p=107#comment-29572</guid>
		<description>Those tips were spot on, thanks for the info man ;)

Cheers
Simon</description>
		<content:encoded><![CDATA[<p>Those tips were spot on, thanks for the info man <img src='http://www.arpitonline.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Cheers<br />
Simon</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Duvar Kagidi</title>
		<link>http://www.arpitonline.com/blog/2008/01/22/creating-custom-list-renderers-the-complete-guide-part-i/comment-page-1/#comment-28018</link>
		<dc:creator>Duvar Kagidi</dc:creator>
		<pubDate>Sun, 02 Mar 2008 13:10:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.arpitonline.com/blog/?p=107#comment-28018</guid>
		<description>est il availible en Francais, my English not good</description>
		<content:encoded><![CDATA[<p>est il availible en Francais, my English not good</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kunhal Parikh</title>
		<link>http://www.arpitonline.com/blog/2008/01/22/creating-custom-list-renderers-the-complete-guide-part-i/comment-page-1/#comment-26979</link>
		<dc:creator>Kunhal Parikh</dc:creator>
		<pubDate>Thu, 07 Feb 2008 16:06:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.arpitonline.com/blog/?p=107#comment-26979</guid>
		<description>@Arpit

Yo long time no talk, how are you doing? Are you still in the Philadelphia region?

Drop me a line, I think you got my e-mail through this? If not its kvp22@drexel.edu</description>
		<content:encoded><![CDATA[<p>@Arpit</p>
<p>Yo long time no talk, how are you doing? Are you still in the Philadelphia region?</p>
<p>Drop me a line, I think you got my e-mail through this? If not its <a href="mailto:kvp22@drexel.edu">kvp22@drexel.edu</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: arpit</title>
		<link>http://www.arpitonline.com/blog/2008/01/22/creating-custom-list-renderers-the-complete-guide-part-i/comment-page-1/#comment-26814</link>
		<dc:creator>arpit</dc:creator>
		<pubDate>Tue, 05 Feb 2008 13:53:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.arpitonline.com/blog/?p=107#comment-26814</guid>
		<description>@Dave,
Another option is to use a Repeater instead of the List. Again, they aren&#039;t optimized to handle large data but at least you dont have to write a list from scratch.</description>
		<content:encoded><![CDATA[<p>@Dave,<br />
Another option is to use a Repeater instead of the List. Again, they aren&#8217;t optimized to handle large data but at least you dont have to write a list from scratch.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
