<?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>Flex Examples &#187; FxList</title>
	<atom:link href="http://blog.flexexamples.com/category/spark/fxlist/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Wed, 26 Jan 2011 18:09:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Setting a column count and row count on a TileLayout FxList component in Flex Gumbo</title>
		<link>http://blog.flexexamples.com/2009/02/26/setting-a-column-count-and-row-count-on-a-tilelayout-fxlist-component-in-flex-gumbo/</link>
		<comments>http://blog.flexexamples.com/2009/02/26/setting-a-column-count-and-row-count-on-a-tilelayout-fxlist-component-in-flex-gumbo/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 14:56:09 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[beta]]></category>
		<category><![CDATA[FxList]]></category>
		<category><![CDATA[TileLayout]]></category>
		<category><![CDATA[columnCount]]></category>
		<category><![CDATA[columnWidth]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[rowCount]]></category>
		<category><![CDATA[rowHeight]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/2009/02/26/setting-a-column-count-and-row-count-on-a-tilelayout-fxlist-component-in-flex-gumbo/</guid>
		<description><![CDATA[<p>The following example shows how you can set a column count and row count on a Flex Gumbo FxList contrl with a tile layout by setting the columnCount, columnWidth, rowCount, and rowHeight properties on the TileLayout object.</p> <p>Full code after the jump.</p> <p></p> <p class="alert">To use the following code, you must have Flash Player 10 [...]]]></description>
			<content:encoded><![CDATA[<p>The following example shows how you can set a column count and row count on a Flex Gumbo FxList contrl with a tile layout by setting the <code>columnCount</code>, <code>columnWidth</code>, <code>rowCount</code>, and <code>rowHeight</code> properties on the TileLayout object.</p>
<p>Full code after the jump.</p>
<p><span id="more-980"></span></p>
<p class="alert">To use the following code, you must have Flash Player 10 and a Flex Gumbo SDK installed in your Flex Builder 3. For more information on downloading and installing the Gumbo SDK into Flex Builder 3, see <a href="http://blog.flexexamples.com/2008/08/02/using-the-beta-gumbo-sdk-in-flex-builder-3/">&#8220;Using the beta Gumbo SDK in Flex Builder 3&#8243;</a>.</p>
<p class="download"><a href="">View MXML</a></p>
<pre class="code">
&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;!-- http://blog.flexexamples.com/2009/02/26/setting-a-column-count-and-row-count-on-a-tilelayout-fxlist-component-in-flex-gumbo/ --&gt;
&lt;FxApplication name="FxList_layout_TileLayout_columnCount_test"
        xmlns="http://ns.adobe.com/mxml/2009"
        backgroundColor="white"&gt;

    &lt;FxList id="list"
            horizontalCenter="0"
            verticalCenter="0"&gt;
        &lt;layout&gt;
            &lt;TileLayout columnCount="3"
                    columnWidth="100"
                    rowCount="2"
                    rowHeight="100"
                    horizontalGap="0"
                    verticalGap="0" /&gt;
        &lt;/layout&gt;
        &lt;dataProvider&gt;
            &lt;ArrayCollection&gt;
                &lt;String&gt;1. The&lt;/String&gt;
                &lt;String&gt;2. Quick&lt;/String&gt;
                &lt;String&gt;3. Brown&lt;/String&gt;
                &lt;String&gt;4. Fox&lt;/String&gt;
                &lt;String&gt;5. Jumps&lt;/String&gt;
                &lt;String&gt;6. Over&lt;/String&gt;
                &lt;String&gt;7. The&lt;/String&gt;
                &lt;String&gt;8. Lazy&lt;/String&gt;
                &lt;String&gt;9. Dog&lt;/String&gt;
            &lt;/ArrayCollection&gt;
        &lt;/dataProvider&gt;
    &lt;/FxList&gt;

&lt;/FxApplication&gt;
</pre>
<p class="alert">This entry is based on a beta version of the Flex Gumbo SDK and therefore is very likely to change as development of the Flex SDK continues. The API can (and will) change causing examples to possibly not compile in newer versions of the Flex Gumbo SDK.</p>
<div class="evernoteSiteMemory"><a href="javascript:" onclick="Evernote.doClip({title: 'Setting a column count and row count on a TileLayout FxList component in Flex Gumbo on FlexExamples.com',url: 'http://blog.flexexamples.com/2009/02/26/setting-a-column-count-and-row-count-on-a-tilelayout-fxlist-component-in-flex-gumbo/',contentID: 'post-980',code: 'Pete9667',suggestNotebook: 'FlexExamples',suggestTags: 'columnCount,columnWidth,Gumbo,layout,rowCount,rowHeight',providerName: 'FlexExamples.com',styling: 'text' });return false" class="evernoteSiteMemoryLink"><img src="http://static.evernote.com/article-clipper-remember.png" class="evernoteSiteMemoryButton" />
				</a>				<div class="evernoteSiteMemoryClear">&nbsp;</div>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.flexexamples.com/2009/02/26/setting-a-column-count-and-row-count-on-a-tilelayout-fxlist-component-in-flex-gumbo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting the requested row count on an FxList control in Flex Gumbo</title>
		<link>http://blog.flexexamples.com/2009/02/25/setting-the-requested-row-count-on-an-fxlist-control-in-flex-gumbo/</link>
		<comments>http://blog.flexexamples.com/2009/02/25/setting-the-requested-row-count-on-an-fxlist-control-in-flex-gumbo/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 14:58:51 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[beta]]></category>
		<category><![CDATA[FxList]]></category>
		<category><![CDATA[VerticalLayout]]></category>
		<category><![CDATA[dataGroup]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[needsSWF]]></category>
		<category><![CDATA[requestedRowCount]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/2009/02/25/setting-the-requested-row-count-on-an-fxlist-control-in-flex-gumbo/</guid>
		<description><![CDATA[<p>The following example shows how you can set the row count on a Flex Gumbo FxList control by setting the requestedRowCount property on the VerticalLayout object.</p> <p>Full code after the jump.</p> <p></p> <p class="alert">To use the following code, you must have Flash Player 10 and a Flex Gumbo SDK installed in your Flex Builder 3. [...]]]></description>
			<content:encoded><![CDATA[<p>The following example shows how you can set the row count on a Flex Gumbo FxList control by setting the <code>requestedRowCount</code> property on the VerticalLayout object.</p>
<p>Full code after the jump.</p>
<p><span id="more-978"></span></p>
<p class="alert">To use the following code, you must have Flash Player 10 and a Flex Gumbo SDK installed in your Flex Builder 3. For more information on downloading and installing the Gumbo SDK into Flex Builder 3, see <a href="http://blog.flexexamples.com/2008/08/02/using-the-beta-gumbo-sdk-in-flex-builder-3/">&#8220;Using the beta Gumbo SDK in Flex Builder 3&#8243;</a>.</p>
<p class="download"><a href="">View MXML</a></p>
<pre class="code">
&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;!-- http://blog.flexexamples.com/2009/02/25/setting-the-requested-row-count-on-an-fxlist-control-in-flex-gumbo/ --&gt;
&lt;FxApplication name="FxList_layout_VerticalLayout_requestedRowCount_test"
        xmlns="http://ns.adobe.com/mxml/2009"
        backgroundColor="white"&gt;

    &lt;FxList id="list"
            horizontalCenter="0"
            verticalCenter="0"&gt;
        &lt;layout&gt;
            &lt;VerticalLayout requestedRowCount="6"
                    gap="0"
                    horizontalAlign="contentJustify" /&gt;
        &lt;/layout&gt;
        &lt;dataProvider&gt;
            &lt;ArrayCollection&gt;
                &lt;String&gt;1. The&lt;/String&gt;
                &lt;String&gt;2. Quick&lt;/String&gt;
                &lt;String&gt;3. Brown&lt;/String&gt;
                &lt;String&gt;4. Fox&lt;/String&gt;
                &lt;String&gt;5. Jumps&lt;/String&gt;
                &lt;String&gt;6. Over&lt;/String&gt;
                &lt;String&gt;7. The&lt;/String&gt;
                &lt;String&gt;8. Lazy&lt;/String&gt;
                &lt;String&gt;9. Dog&lt;/String&gt;
            &lt;/ArrayCollection&gt;
        &lt;/dataProvider&gt;
    &lt;/FxList&gt;

&lt;/FxApplication&gt;
</pre>
<p>Or, you can also modify the FxList control&#8217;s default VerticalLayout object directly, as seen in the following example:</p>
<p class="download"><a href="">View MXML</a></p>
<pre class="code">
&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;!-- http://blog.flexexamples.com/2009/02/25/setting-the-requested-row-count-on-an-fxlist-control-in-flex-gumbo/ --&gt;
&lt;FxApplication name="FxList_layout_VerticalLayout_requestedRowCount_test"
        xmlns="http://ns.adobe.com/mxml/2009"
        backgroundColor="white"&gt;

    &lt;Script&gt;
        &lt;![CDATA[
            import mx.layout.VerticalLayout;

            private function init():void {
                var vLayout:VerticalLayout = list.dataGroup.layout as VerticalLayout;
                vLayout.requestedRowCount = 6;
            }
        ]]&gt;
    &lt;/Script&gt;

    &lt;FxList id="list"
            horizontalCenter="0"
            verticalCenter="0"
            initialize="init();"&gt;
        &lt;dataProvider&gt;
            &lt;ArrayCollection&gt;
                &lt;String&gt;1. The&lt;/String&gt;
                &lt;String&gt;2. Quick&lt;/String&gt;
                &lt;String&gt;3. Brown&lt;/String&gt;
                &lt;String&gt;4. Fox&lt;/String&gt;
                &lt;String&gt;5. Jumps&lt;/String&gt;
                &lt;String&gt;6. Over&lt;/String&gt;
                &lt;String&gt;7. The&lt;/String&gt;
                &lt;String&gt;8. Lazy&lt;/String&gt;
                &lt;String&gt;9. Dog&lt;/String&gt;
            &lt;/ArrayCollection&gt;
        &lt;/dataProvider&gt;
    &lt;/FxList&gt;

&lt;/FxApplication&gt;
</pre>
<p class="new">Or, you can set the requested row count in a custom skin, as seen in the following example:</p>
<p class="download"><a href="">View MXML</a></p>
<pre class="code">
&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;!-- MyFxListSkin.mxml --&gt;
&lt;!--

    ADOBE SYSTEMS INCORPORATED
    Copyright 2008 Adobe Systems Incorporated
    All Rights Reserved.

    NOTICE: Adobe permits you to use, modify, and distribute this file
    in accordance with the terms of the license agreement accompanying it.

--&gt;

&lt;SparkSkin xmlns="http://ns.adobe.com/mxml/2009"
      minWidth="112" minHeight="112"
      alpha.disabled="0.5"&gt;

    &lt;Metadata&gt;
        [HostComponent("mx.components.FxList")]
    &lt;/Metadata&gt;

    &lt;Script&gt;
        static private const exclusions:Array = ["scroller", "background"];
        override public function get colorizeExclusions():Array {return exclusions;}

        static private const contentFill:Array = ["bgFill"];
        override public function get contentItems():Array {return contentFill};
    &lt;/Script&gt;

    &lt;states&gt;
        &lt;State name="normal" /&gt;
        &lt;State name="disabled" /&gt;
    &lt;/states&gt;

    &lt;!-- border --&gt;
    &lt;Rect left="0" right="0" top="0" bottom="0"&gt;
        &lt;stroke&gt;
            &lt;SolidColorStroke color="0x686868" weight="1"/&gt;
        &lt;/stroke&gt;
    &lt;/Rect&gt;

    &lt;!-- fill --&gt;
    &lt;Rect id="background" left="1" right="1" top="1" bottom="1" &gt;
        &lt;fill&gt;
            &lt;SolidColor id="bgFill" color="0xFFFFFF" /&gt;
        &lt;/fill&gt;
    &lt;/Rect&gt;

    &lt;FxScroller left="1" top="1" right="1" bottom="1" id="scroller"&gt;
        &lt;DataGroup id="dataGroup" itemRenderer="mx.skins.spark.FxDefaultItemRenderer"&gt;
            &lt;layout&gt;
                &lt;VerticalLayout gap="0" horizontalAlign="contentJustify" <strong style="color:red;">requestedRowCount="10"</strong> /&gt;
            &lt;/layout&gt;
        &lt;/DataGroup&gt;
    &lt;/FxScroller&gt;

&lt;/SparkSkin&gt;
</pre>
<p>To use the custom skin, set the <code>skinClass</code> style, as seen in the following example:</p>
<p class="download"><a href="">View MXML</a></p>
<pre class="code">
&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;!-- http://blog.flexexamples.com/2009/02/25/setting-the-requested-row-count-on-an-fxlist-control-in-flex-gumbo/ --&gt;
&lt;FxApplication name="FxList_skinClass_requestedRowCount_test"
        xmlns="http://ns.adobe.com/mxml/2009"
        backgroundColor="white"
        initialize="init();"&gt;

    &lt;Script&gt;
        &lt;![CDATA[
            import mx.collections.ArrayCollection;

            private var arrColl:ArrayCollection;

            private function init():void {
                var idx:uint;
                var len:uint = 1000;
                var arr:Array = [];
                for (idx=0; idx&lt;len; idx++) {
                    arr.push(idx + ": " + Math.random().toFixed(4));
                }
                arrColl = new ArrayCollection(arr);
                list.dataProvider = arrColl;
            }
        ]]&gt;
    &lt;/Script&gt;

    &lt;FxList id="list"
            skinClass="MyFxListSkin"
            horizontalCenter="0"
            verticalCenter="0"
            width="200" /&gt;

&lt;/FxApplication&gt;
</pre>
<p>Or, you could extend the default FxListSkin class and override the <code>requestedRowCount</code> property using ActionScript, as seen in the following example:</p>
<p class="download"><a href="">View MXML</a></p>
<pre class="code">
/** MyFxListSkin2.as */
package {
    import mx.layout.VerticalLayout;
    import mx.skins.spark.FxListSkin;

    public class MyFxListSkin2 extends FxListSkin {
        public function MyFxListSkin2() {
            super();
            init();
        }
        private function init():void {
            VerticalLayout(super.dataGroup.layout).requestedRowCount = 10;
        }
    }
}
</pre>
<p>To use the custom skin, set the <code>skinClass</code> style, as seen in the following example:</p>
<p class="download"><a href="">View MXML</a></p>
<pre class="code">
&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;!-- http://blog.flexexamples.com/2009/02/25/setting-the-requested-row-count-on-an-fxlist-control-in-flex-gumbo/ --&gt;
&lt;FxApplication name="FxList_skinClass_requestedRowCount_test"
        xmlns="http://ns.adobe.com/mxml/2009"
        backgroundColor="white"
        initialize="init();"&gt;

    &lt;Script&gt;
        &lt;![CDATA[
            import mx.collections.ArrayCollection;

            private var arrColl:ArrayCollection;

            private function init():void {
                var idx:uint;
                var len:uint = 1000;
                var arr:Array = [];
                for (idx=0; idx&lt;len; idx++) {
                    arr.push(idx + ": " + Math.random().toFixed(4));
                }
                arrColl = new ArrayCollection(arr);
                list.dataProvider = arrColl;
            }
        ]]&gt;
    &lt;/Script&gt;

    &lt;FxList id="list"
            skinClass="MyFxListSkin2"
            horizontalCenter="0"
            verticalCenter="0"
            width="200" /&gt;

&lt;/FxApplication&gt;
</pre>
<p class="alert">This entry is based on a beta version of the Flex Gumbo SDK and therefore is very likely to change as development of the Flex SDK continues. The API can (and will) change causing examples to possibly not compile in newer versions of the Flex Gumbo SDK.</p>
<div class="evernoteSiteMemory"><a href="javascript:" onclick="Evernote.doClip({title: 'Setting the requested row count on an FxList control in Flex Gumbo on FlexExamples.com',url: 'http://blog.flexexamples.com/2009/02/25/setting-the-requested-row-count-on-an-fxlist-control-in-flex-gumbo/',contentID: 'post-978',code: 'Pete9667',suggestNotebook: 'FlexExamples',suggestTags: 'dataGroup,Gumbo,layout,needsSWF,requestedRowCount',providerName: 'FlexExamples.com',styling: 'text' });return false" class="evernoteSiteMemoryLink"><img src="http://static.evernote.com/article-clipper-remember.png" class="evernoteSiteMemoryButton" />
				</a>				<div class="evernoteSiteMemoryClear">&nbsp;</div>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.flexexamples.com/2009/02/25/setting-the-requested-row-count-on-an-fxlist-control-in-flex-gumbo/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Setting the layout direction on an FxList control in Flex Gumbo</title>
		<link>http://blog.flexexamples.com/2009/02/24/setting-the-layout-direction-on-an-fxlist-control-in-flex-gumbo/</link>
		<comments>http://blog.flexexamples.com/2009/02/24/setting-the-layout-direction-on-an-fxlist-control-in-flex-gumbo/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 05:09:55 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[beta]]></category>
		<category><![CDATA[FxList]]></category>
		<category><![CDATA[HorizontalLayout]]></category>
		<category><![CDATA[TileLayout]]></category>
		<category><![CDATA[VerticalLayout]]></category>
		<category><![CDATA[gap]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[horizontalGap]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[verticalGap]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/2009/02/24/setting-the-layout-direction-on-an-fxlist-control-in-flex-gumbo/</guid>
		<description><![CDATA[<p>The following examples show how you can set the layout direction on a Flex Gumbo FxList control by setting the layout property to a VerticalLayout object (default), HorizontalLayout object, or a TileLayout object.</p> <p>Full code after the jump.</p> <p></p> <p class="alert">To use the following code, you must have Flash Player 10 and a Flex Gumbo [...]]]></description>
			<content:encoded><![CDATA[<p>The following examples show how you can set the layout direction on a Flex Gumbo FxList control by setting the <code>layout</code> property to a VerticalLayout object (default), HorizontalLayout object, or a TileLayout object.</p>
<p>Full code after the jump.</p>
<p><span id="more-976"></span></p>
<p class="alert">To use the following code, you must have Flash Player 10 and a Flex Gumbo SDK installed in your Flex Builder 3. For more information on downloading and installing the Gumbo SDK into Flex Builder 3, see <a href="http://blog.flexexamples.com/2008/08/02/using-the-beta-gumbo-sdk-in-flex-builder-3/">&#8220;Using the beta Gumbo SDK in Flex Builder 3&#8243;</a>.</p>
<p>By default the FxList control uses a vertical layout, as seen in the following example:</p>
<p class="download"><a href="">View MXML</a></p>
<pre class="code">
&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;!-- http://blog.flexexamples.com/2009/02/24/setting-the-layout-direction-on-an-fxlist-control-in-flex-gumbo/ --&gt;
&lt;FxApplication name="FxList_layout_test"
        xmlns="http://ns.adobe.com/mxml/2009"
        backgroundColor="white"&gt;

    &lt;FxList id="list"
            horizontalCenter="0"
            verticalCenter="0"
            width="150"
            height="100"&gt;
        &lt;dataProvider&gt;
            &lt;ArrayCollection&gt;
                &lt;String&gt;1. The&lt;/String&gt;
                &lt;String&gt;2. Quick&lt;/String&gt;
                &lt;String&gt;3. Brown&lt;/String&gt;
                &lt;String&gt;4. Fox&lt;/String&gt;
                &lt;String&gt;5. Jumps&lt;/String&gt;
                &lt;String&gt;6. Over&lt;/String&gt;
                &lt;String&gt;7. The&lt;/String&gt;
                &lt;String&gt;8. Lazy&lt;/String&gt;
                &lt;String&gt;9. Dog&lt;/String&gt;
            &lt;/ArrayCollection&gt;
        &lt;/dataProvider&gt;
    &lt;/FxList&gt;

&lt;/FxApplication&gt;
</pre>
<p>If you wanted to use a horizontal layout simply set the <code>layout</code> property to a HorizontalLayout object, as seen in the following example:</p>
<p class="download"><a href="">View MXML</a></p>
<pre class="code">
&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;!-- http://blog.flexexamples.com/2009/02/24/setting-the-layout-direction-on-an-fxlist-control-in-flex-gumbo/ --&gt;
&lt;FxApplication name="FxList_layout_test"
        xmlns="http://ns.adobe.com/mxml/2009"
        backgroundColor="white"&gt;

    &lt;FxList id="list"
            horizontalCenter="0"
            verticalCenter="0"
            width="150"
            height="100"&gt;
        &lt;layout&gt;
            &lt;HorizontalLayout gap="0" /&gt;
        &lt;/layout&gt;
        &lt;dataProvider&gt;
            &lt;ArrayCollection&gt;
                &lt;String&gt;1. The&lt;/String&gt;
                &lt;String&gt;2. Quick&lt;/String&gt;
                &lt;String&gt;3. Brown&lt;/String&gt;
                &lt;String&gt;4. Fox&lt;/String&gt;
                &lt;String&gt;5. Jumps&lt;/String&gt;
                &lt;String&gt;6. Over&lt;/String&gt;
                &lt;String&gt;7. The&lt;/String&gt;
                &lt;String&gt;8. Lazy&lt;/String&gt;
                &lt;String&gt;9. Dog&lt;/String&gt;
            &lt;/ArrayCollection&gt;
        &lt;/dataProvider&gt;
    &lt;/FxList&gt;

&lt;/FxApplication&gt;
</pre>
<p>Or, if you wanted to use a tile layout (similar to a Halo TileList control) simply set the <code>layout</code> property to a TileLayout object, as seen in the following example:</p>
<p class="download"><a href="">View MXML</a></p>
<pre class="code">
&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;!-- http://blog.flexexamples.com/2009/02/24/setting-the-layout-direction-on-an-fxlist-control-in-flex-gumbo/ --&gt;
&lt;FxApplication name="FxList_layout_test"
        xmlns="http://ns.adobe.com/mxml/2009"
        backgroundColor="white"&gt;

    &lt;FxList id="list"
            horizontalCenter="0"
            verticalCenter="0"
            width="150"
            height="100"&gt;
        &lt;layout&gt;
            &lt;TileLayout horizontalGap="0" verticalGap="0" /&gt;
        &lt;/layout&gt;
        &lt;dataProvider&gt;
            &lt;ArrayCollection&gt;
                &lt;String&gt;1. The&lt;/String&gt;
                &lt;String&gt;2. Quick&lt;/String&gt;
                &lt;String&gt;3. Brown&lt;/String&gt;
                &lt;String&gt;4. Fox&lt;/String&gt;
                &lt;String&gt;5. Jumps&lt;/String&gt;
                &lt;String&gt;6. Over&lt;/String&gt;
                &lt;String&gt;7. The&lt;/String&gt;
                &lt;String&gt;8. Lazy&lt;/String&gt;
                &lt;String&gt;9. Dog&lt;/String&gt;
            &lt;/ArrayCollection&gt;
        &lt;/dataProvider&gt;
    &lt;/FxList&gt;

&lt;/FxApplication&gt;
</pre>
<p class="alert">This entry is based on a beta version of the Flex Gumbo SDK and therefore is very likely to change as development of the Flex SDK continues. The API can (and will) change causing examples to possibly not compile in newer versions of the Flex Gumbo SDK.</p>
<div class="evernoteSiteMemory"><a href="javascript:" onclick="Evernote.doClip({title: 'Setting the layout direction on an FxList control in Flex Gumbo on FlexExamples.com',url: 'http://blog.flexexamples.com/2009/02/24/setting-the-layout-direction-on-an-fxlist-control-in-flex-gumbo/',contentID: 'post-976',code: 'Pete9667',suggestNotebook: 'FlexExamples',suggestTags: 'gap,Gumbo,horizontalGap,layout,verticalGap',providerName: 'FlexExamples.com',styling: 'text' });return false" class="evernoteSiteMemoryLink"><img src="http://static.evernote.com/article-clipper-remember.png" class="evernoteSiteMemoryButton" />
				</a>				<div class="evernoteSiteMemoryClear">&nbsp;</div>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.flexexamples.com/2009/02/24/setting-the-layout-direction-on-an-fxlist-control-in-flex-gumbo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

