Setting the horizontal alignment on a FxList control in Flex Gumbo

by Peter deHaan on February 25, 2009

in FxList, VerticalLayout, beta

The following example shows how you can set the horizontal alignment on a Flex Gumbo FxList control with a vertical layout by setting the horizontalAlign property on the VerticalLayout object to one of the static constants in the mx.layout.HorizontalAlign class.

Full code after the jump.

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 “Using the beta Gumbo SDK in Flex Builder 3″.

View MXML

<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2009/02/25/setting-the-horizontal-alignment-on-a-fxlist-control-in-flex-gumbo/ -->
<Application name="FxList_layout_VerticalLayout_horizontalAlign_test"
        xmlns="http://ns.adobe.com/mxml/2009"
        backgroundColor="white">

    <ApplicationControlBar dock="true">
        <Form styleName="plain">
            <FormItem label="horizontalAlign:">
                <ComboBox id="comboBox"
                        dataProvider="[left,center,right,justify,contentJustify]"
                        selectedIndex="4" />
            </FormItem>
        </Form>
    </ApplicationControlBar>

    <FxList id="list" width="200">
        <layout>
            <VerticalLayout gap="0"
                    horizontalAlign="{comboBox.selectedItem}"
                    requestedRowCount="6" />
        </layout>
        <dataProvider>
            <ArrayCollection>
                <String>1. The</String>
                <String>2. Quick</String>
                <String>3. Brown</String>
                <String>4. Fox</String>
                <String>5. Jumps</String>
                <String>6. Over</String>
                <String>7. The</String>
                <String>8. Lazy</String>
                <String>9. Dog</String>
            </ArrayCollection>
        </dataProvider>
    </FxList>

</Application>

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.

Leave a Comment

Sorry, this blog is terrible at eating HTML comments.
If you're pasting any HTML/XML/MXML code, you need to convert your < characters to &lt; and your > characters to &gt; .

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="">

Anti-Spam Protection by WP-SpamFree

Previous post:

Next post: