Use Spinner to choose value : Spinner « Components « Flex






Use Spinner to choose value

Use Spinner to choose value
  
<?xml version='1.0' encoding='UTF-8'?>
<mx:Application 
    xmlns:s="library://ns.adobe.com/flex/spark" 
    xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Script>
        
        import mx.controls.Alert;
        public function showMsg(msg:String):void {
            Alert.show(msg);
        }
      
    </mx:Script>
    <mx:Panel title="Profile">
        <s:VGroup>
            <s:HGroup>
                <mx:Label fontWeight="bold" text="Value 2:" />
                <s:Spinner minimum="0" maximum="10" id="collegeKids" />
                <mx:Label text="{collegeKids.value} in college" />
            </s:HGroup>
        </s:VGroup>
    </mx:Panel>
</mx:Application>

   
    
  








Related examples in the same category

1.Show a Spinner control that allows wrapping back to the minimum value once the maximum value is reached.Show a Spinner control that allows wrapping back to the minimum value once the maximum value is reached.