The following example shows how you can wrap values in a Spark Spinner control in Flex 4 by setting the Boolean allowValueWrap property.

The following example(s) require Flash Player 10 and the Adobe Flex 4 SDK. To download the Adobe Flash Builder 4 trial, see http://www.adobe.com/products/flex/. To download the latest nightly build of the Flex 4 SDK, see http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4.
For more information on getting started with Flex 4 and Flash Builder 4, see the official Adobe Flex Team blog.

<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2008/10/28/wrapping-values-on-an-fxspinner-control-in-flex-gumbo/ -->
<s:Application name="Spark_Spinner_allowValueWrap_test"
        xmlns:fx="http://ns.adobe.com/mxml/2009" 
        xmlns:s="library://ns.adobe.com/flex/spark" 
        xmlns:mx="library://ns.adobe.com/flex/mx">
    <s:controlBarContent>
        <s:CheckBox id="checkBox"
                label="allowValueWrap" />
    </s:controlBarContent>
 
    <mx:Form horizontalCenter="0" verticalCenter="0">
        <mx:FormItem label="Spark Spinner:" direction="horizontal">
            <s:Spinner id="spinner"
                    minimum="0" maximum="20"
                    stepSize="2"
                    allowValueWrap="{checkBox.selected}" />
            <s:Label text="{spinner.value}" width="20" />
        </mx:FormItem>
    </mx:Form>
 
</s:Application>

View source is enabled in the following example.

Or you can set the Boolean allowValueWrap property using ActionScript, as seen in the following example:

<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2008/10/28/wrapping-values-on-an-fxspinner-control-in-flex-gumbo/ -->
<s:Application name="Spark_Spinner_allowValueWrap_test"
        xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:mx="library://ns.adobe.com/flex/mx">
    <s:controlBarContent>
        <s:CheckBox id="checkBox"
                label="allowValueWrap"
                change="checkBox_changeHandler(event);" />
    </s:controlBarContent>
 
    <fx:Script>
        <![CDATA[
            protected function checkBox_changeHandler(evt:Event):void {
                spinner.allowValueWrap = checkBox.selected;
            }
        ]]>
    </fx:Script>
 
    <mx:Form horizontalCenter="0" verticalCenter="0">
        <mx:FormItem label="Spark Spinner:" direction="horizontal">
            <s:Spinner id="spinner"
                    minimum="0" maximum="20"
                    stepSize="2" />
            <s:Label text="{spinner.value}" width="20" />
        </mx:FormItem>
    </mx:Form>
 
</s:Application>

This entry is based on a beta version of the Flex 4 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 4 SDK.

 
Tagged with:
 
About The Author

Peter deHaan

Peter deHaan currently works for Adobe on the Flex SDK QA team. While not working on Flex, Flash, and ColdFusion applications, Peter enjoys making up bios and writing in 3rd person. Peter's rarely updated blog can be found at blogs.adobe.com/pdehaan/, actionscriptexamples.com, airexamples.com, and coldfusionexamples.com.

2 Responses to Wrapping values on a Spark Spinner control in Flex 4

  1. peterd, good afternoon!

    I do not know speak very well english because I’m Brazilian …

    But I do a strength because you deserve!

    Congratulations!

    See you.

  2. Peter deHaan says:

    Updated example code (but not SWF) to compile with Flex 4 beta 2 SDK.

    Peter