<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Flexponential &#187; DataGroup</title>
	<atom:link href="http://flexponential.com/tag/datagroup/feed/" rel="self" type="application/rss+xml" />
	<link>http://flexponential.com</link>
	<description>Programming under the influence of Flex</description>
	<lastBuildDate>Thu, 10 Nov 2011 18:44:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Simple wave effect on items in a DataGroup</title>
		<link>http://flexponential.com/2010/04/11/simple-wave-effect-on-items-in-a-datagroup/</link>
		<comments>http://flexponential.com/2010/04/11/simple-wave-effect-on-items-in-a-datagroup/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 23:08:26 +0000</pubDate>
		<dc:creator>Steven Shongrunden</dc:creator>
				<category><![CDATA[Flex 4]]></category>
		<category><![CDATA[DataGroup]]></category>
		<category><![CDATA[effects]]></category>
		<category><![CDATA[ItemRenderer]]></category>
		<category><![CDATA[spark]]></category>

		<guid isPermaLink="false">http://flexponential.com/?p=680</guid>
		<description><![CDATA[This post demonstrates one way of creating a simple wave effect on items in a DataGroup. A post on polyGeek.com reminded me of an old sample I had laying around that was kind of interesting. Try mousing over the renderers to see the item renderers transition on top of the wave motion. If you run [...]]]></description>
		<wfw:commentRss>http://flexponential.com/2010/04/11/simple-wave-effect-on-items-in-a-datagroup/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Learn how to create a simple virtual layout in Flex 4</title>
		<link>http://flexponential.com/2010/03/06/learn-how-to-create-a-simple-virtual-layout-in-flex-4/</link>
		<comments>http://flexponential.com/2010/03/06/learn-how-to-create-a-simple-virtual-layout-in-flex-4/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 00:00:05 +0000</pubDate>
		<dc:creator>Steven Shongrunden</dc:creator>
				<category><![CDATA[Flex 4]]></category>
		<category><![CDATA[DataGroup]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[spark]]></category>
		<category><![CDATA[useVirtualLayout]]></category>
		<category><![CDATA[virtual layout]]></category>

		<guid isPermaLink="false">http://flexponential.com/?p=474</guid>
		<description><![CDATA[This post goes over the basics of writing a very simple custom layout that supports virtualization in spark. It assumes that you have already built a custom layout that handles the real (non-virtual) case and are comfortable doing so. The main difference between a virtual and non-virtual layout is how many renderers are created. A [...]]]></description>
		<wfw:commentRss>http://flexponential.com/2010/03/06/learn-how-to-create-a-simple-virtual-layout-in-flex-4/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Binding warnings when using Object in a List dataProvider</title>
		<link>http://flexponential.com/2009/11/11/binding-warnings-when-using-object-in-a-list-dataprovider/</link>
		<comments>http://flexponential.com/2009/11/11/binding-warnings-when-using-object-in-a-list-dataprovider/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 17:49:29 +0000</pubDate>
		<dc:creator>Steven Shongrunden</dc:creator>
				<category><![CDATA[Flex 4]]></category>
		<category><![CDATA[DataGroup]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[SkinnableDataContainer]]></category>
		<category><![CDATA[spark]]></category>

		<guid isPermaLink="false">http://flexponential.com/?p=116</guid>
		<description><![CDATA[If you have built a custom item renderer for a DataGroup or List you may have come across warnings in your Flash Builder console output similar to this: warning: unable to bind to property 'firstName' on class 'Object' (class is not an IEventDispatcher) This kind of warning typically happens when you are trying to bind [...]]]></description>
		<wfw:commentRss>http://flexponential.com/2009/11/11/binding-warnings-when-using-object-in-a-list-dataprovider/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Different ways of assigning an item renderer in Flex 4</title>
		<link>http://flexponential.com/2009/11/02/different-ways-of-assigning-an-item-renderer-in-flex-4/</link>
		<comments>http://flexponential.com/2009/11/02/different-ways-of-assigning-an-item-renderer-in-flex-4/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 19:38:30 +0000</pubDate>
		<dc:creator>Steven Shongrunden</dc:creator>
				<category><![CDATA[Flex 4]]></category>
		<category><![CDATA[DataGroup]]></category>
		<category><![CDATA[ItemRenderer]]></category>
		<category><![CDATA[itemRendererFunction]]></category>
		<category><![CDATA[spark]]></category>

		<guid isPermaLink="false">http://flexponential.com/?p=32</guid>
		<description><![CDATA[This post looks at a couple ways of defining a custom item renderer on a DataGroup, but it also applies the same way to a SkinnableDataContainer, spark List, and any other spark components that support item rendering. Here is a very basic custom item renderer that simply shows the data item in a spark Label: [...]]]></description>
		<wfw:commentRss>http://flexponential.com/2009/11/02/different-ways-of-assigning-an-item-renderer-in-flex-4/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Deleting items in a List from an item renderer</title>
		<link>http://flexponential.com/2009/09/23/deleting-items-in-a-list-from-an-item-renderer/</link>
		<comments>http://flexponential.com/2009/09/23/deleting-items-in-a-list-from-an-item-renderer/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 20:50:26 +0000</pubDate>
		<dc:creator>Steven Shongrunden</dc:creator>
				<category><![CDATA[Flex 4]]></category>
		<category><![CDATA[DataGroup]]></category>
		<category><![CDATA[ItemRenderer]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[spark]]></category>

		<guid isPermaLink="false">http://flexponential.com/?p=123</guid>
		<description><![CDATA[It&#8217;s easy to delete an item in a spark List from within an item renderer. This is handy if you have a List with a custom renderer that provides a button to delete the item that is associated with that renderer. You can do this by using the ItemRenderer&#8217;s owner property to access the List [...]]]></description>
		<wfw:commentRss>http://flexponential.com/2009/09/23/deleting-items-in-a-list-from-an-item-renderer/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Expanding item renderers in a DataGroup or List</title>
		<link>http://flexponential.com/2009/07/18/expanding-item-renderers-in-a-datagroup-or-list/</link>
		<comments>http://flexponential.com/2009/07/18/expanding-item-renderers-in-a-datagroup-or-list/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 04:10:26 +0000</pubDate>
		<dc:creator>Steven Shongrunden</dc:creator>
				<category><![CDATA[Flex 4]]></category>
		<category><![CDATA[DataGroup]]></category>
		<category><![CDATA[ItemRenderer]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[spark]]></category>

		<guid isPermaLink="false">http://flexponential.com/?p=103</guid>
		<description><![CDATA[The spark DataGroup component is designed to take data items and pass them through an item renderer to create a visual representation of that data. In Flex 4 it is very easy to build custom item renderers. This sample application demonstrates how you can create an item renderer that only shows some information by default [...]]]></description>
		<wfw:commentRss>http://flexponential.com/2009/07/18/expanding-item-renderers-in-a-datagroup-or-list/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Introduction to the DataGroup Component in Flex 4</title>
		<link>http://flexponential.com/2009/06/17/introduction-to-the-datagroup-component-in-flex-4/</link>
		<comments>http://flexponential.com/2009/06/17/introduction-to-the-datagroup-component-in-flex-4/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 19:00:21 +0000</pubDate>
		<dc:creator>Steven Shongrunden</dc:creator>
				<category><![CDATA[Flex 4]]></category>
		<category><![CDATA[DataGroup]]></category>
		<category><![CDATA[spark]]></category>

		<guid isPermaLink="false">http://flexponential.com/?p=10</guid>
		<description><![CDATA[DataGroup is a new component introduced in Flex 4 that is responsible for turning data items like Strings and Objects into visual elements. The process of turning boring old data items into a visual representation is called item rendering. DataGroup is the lightest weight component that deals with item rendering. It has no skin and [...]]]></description>
		<wfw:commentRss>http://flexponential.com/2009/06/17/introduction-to-the-datagroup-component-in-flex-4/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

