<?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 the Repeater class in Flex 4</title>
	<atom:link href="http://blog.flexexamples.com/2009/03/10/using-the-repeater-class-in-flex-gumbo/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2009/03/10/using-the-repeater-class-in-flex-gumbo/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Sat, 11 Feb 2012 11:51:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Don</title>
		<link>http://blog.flexexamples.com/2009/03/10/using-the-repeater-class-in-flex-gumbo/comment-page-1/#comment-7741</link>
		<dc:creator>Don</dc:creator>
		<pubDate>Tue, 18 May 2010 19:20:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2009/03/10/using-the-repeater-class-in-flex-gumbo/#comment-7741</guid>
		<description>Hi,
How do I assign an id dynamically? I&#039;m building a form with dynamic fields and need to then read the values  to send to PHP.

Thanks

Don</description>
		<content:encoded><![CDATA[<p>Hi,<br />
How do I assign an id dynamically? I&#8217;m building a form with dynamic fields and need to then read the values  to send to PHP.</p>
<p>Thanks</p>
<p>Don</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: judah</title>
		<link>http://blog.flexexamples.com/2009/03/10/using-the-repeater-class-in-flex-gumbo/comment-page-1/#comment-4143</link>
		<dc:creator>judah</dc:creator>
		<pubDate>Wed, 03 Jun 2009 18:14:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2009/03/10/using-the-repeater-class-in-flex-gumbo/#comment-4143</guid>
		<description>Do repeaters show visually in Design View in Gumbo? I can&#039;t seem to get the repeater content to show while in FB3 there was a preview.

Example code,
&lt;pre class=&quot;code&quot;&gt;
	&lt;mx:VBox id=&quot;contentVBox0&quot; verticalGap=&quot;0&quot; left=&quot;0&quot; y=&quot;0&quot; width=&quot;400&quot;&gt;
		&lt;mx:Repeater id=&quot;postsRepeater&quot; dataProvider=&quot;{content1.lastResult.posts.post}&quot; width=&quot;100%&quot; x=&quot;0&quot; y=&quot;0&quot;&gt;
			&lt;mx:VBox id=&quot;contentVBox3&quot; width=&quot;100%&quot; verticalGap=&quot;0&quot;&gt;
				&lt;mx:Canvas id=&quot;canvas0&quot; width=&quot;100%&quot; &gt;
					&lt;mx:Text id=&quot;textlink0&quot; text=&quot;Post Title&quot; height=&quot;26&quot; styleName=&quot;postTitle&quot;
						toolTip=&quot;post?postId={postsRepeater.currentItem.@id}&quot;
						htmlText=&quot;{postsRepeater.currentItem.@title}&quot; fontSize=&quot;19&quot; fontWeight=&quot;bold&quot;/&gt;
					&lt;mx:Text id=&quot;textautosize0&quot; y=&quot;25&quot; selectable=&quot;true&quot; styleName=&quot;postDateCreated&quot; text=&quot;Saturday, January 1, 2009&quot;
						htmlText=&quot;{postsRepeater.currentItem.dateCreated}&quot;  fontWeight=&quot;bold&quot;/&gt;
					&lt;mx:Text id=&quot;postDescription0&quot; width=&quot;100%&quot; y=&quot;52&quot; styleName=&quot;postDescription&quot; text=&quot;Description area&quot;
						htmlText=&quot;{postsRepeater.currentItem.content}&quot;/&gt;
				&lt;/mx:Canvas&gt;
				&lt;mx:Spacer id=&quot;spacer0&quot; height=&quot;35&quot; /&gt;
			&lt;/mx:VBox&gt;
		&lt;/mx:Repeater&gt;
	&lt;/mx:VBox&gt;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Do repeaters show visually in Design View in Gumbo? I can&#8217;t seem to get the repeater content to show while in FB3 there was a preview.</p>
<p>Example code,</p>
<pre class="code">
	&lt;mx:VBox id="contentVBox0" verticalGap="0" left="0" y="0" width="400"&gt;
		&lt;mx:Repeater id="postsRepeater" dataProvider="{content1.lastResult.posts.post}" width="100%" x="0" y="0"&gt;
			&lt;mx:VBox id="contentVBox3" width="100%" verticalGap="0"&gt;
				&lt;mx:Canvas id="canvas0" width="100%" &gt;
					&lt;mx:Text id="textlink0" text="Post Title" height="26" styleName="postTitle"
						toolTip="post?postId={postsRepeater.currentItem.@id}"
						htmlText="{postsRepeater.currentItem.@title}" fontSize="19" fontWeight="bold"/&gt;
					&lt;mx:Text id="textautosize0" y="25" selectable="true" styleName="postDateCreated" text="Saturday, January 1, 2009"
						htmlText="{postsRepeater.currentItem.dateCreated}"  fontWeight="bold"/&gt;
					&lt;mx:Text id="postDescription0" width="100%" y="52" styleName="postDescription" text="Description area"
						htmlText="{postsRepeater.currentItem.content}"/&gt;
				&lt;/mx:Canvas&gt;
				&lt;mx:Spacer id="spacer0" height="35" /&gt;
			&lt;/mx:VBox&gt;
		&lt;/mx:Repeater&gt;
	&lt;/mx:VBox&gt;
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: lee probert</title>
		<link>http://blog.flexexamples.com/2009/03/10/using-the-repeater-class-in-flex-gumbo/comment-page-1/#comment-4144</link>
		<dc:creator>lee probert</dc:creator>
		<pubDate>Thu, 30 Apr 2009 16:17:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2009/03/10/using-the-repeater-class-in-flex-gumbo/#comment-4144</guid>
		<description>Do you know if a repeater has to have a dataProvider or will the count property suffice? I&#039;m not having any luck getting a simple repeater to add multiple children into my container in Flex 4. I don&#039;t need a DP.</description>
		<content:encoded><![CDATA[<p>Do you know if a repeater has to have a dataProvider or will the count property suffice? I&#8217;m not having any luck getting a simple repeater to add multiple children into my container in Flex 4. I don&#8217;t need a DP.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

