Use PopUpMenuButton change event to set the label : PopUpMenuButton « Components « Flex

Home
Flex
1.Chart
2.Components
3.Container
4.Data Model
5.Development
6.Effects
7.Event
8.Graphics
9.Grid
10.Style
Flex » Components » PopUpMenuButtonScreenshots 
Use PopUpMenuButton change event to set the label
Use PopUpMenuButton change event to set the label
     
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" height="600"
    width="600">
    <mx:Script>
        
        import mx.events.MenuEvent;
        public function itemClickHandler(event:MenuEvent):void {
            event.currentTarget.label= "Send to: " + event.label;
        }
        [Bindable]
        public var menuData:Array = [
            {label: "A", data: "a"},
            {label: "B", data: "b"},
            {label: "C", data: "c"},
            {label: "D", data: "d"},
            {label: "E", data: "e"}
        ];
      
    </mx:Script>
    <mx:PopUpMenuButton id="p1" 
                        showRoot="true" 
                        dataProvider="{menuData}" 
                        label="Send to: Inbox"
                        itemClick="itemClickHandler(event);" />
</mx:Application>

   
    
    
    
    
  
Related examples in the same category
1.Setup data provider for PopUpMenuButtonSetup data provider for PopUpMenuButton
2.PopUpMenuButton click eventPopUpMenuButton click event
3.Hard code data provider for PopUpMenuButton
4.Menu Separator for PopupMenuButtonMenu Separator for PopupMenuButton
5.Setup PopupMenuButtonSetup PopupMenuButton
6.Create PopUpMenuButton from ArrayCreate PopUpMenuButton from Array
7.Click event for PopUpMenuButtonClick event for PopUpMenuButton
8.Create a PopUpMenuButton control using an E4X XML data provider.Create a PopUpMenuButton control using an E4X XML data provider.
9.Use XMLListCollection as the PopUpMenuButton data sourceUse XMLListCollection as the PopUpMenuButton data source
10.Item click event for PopUpMenuButtonItem click event for PopUpMenuButton
11.PopUpMenuButton and XMLList data providerPopUpMenuButton and XMLList data provider
12.how the PopUpMenuButton generates events and how an application can handle themhow the PopUpMenuButton generates events and how an application can handle them
13.Creating a PopUpMenuButton controlCreating a PopUpMenuButton control
14.To use a dynamic label property, use a PopUpMenuButton control change event listenerTo use a dynamic label property, use a PopUpMenuButton control change event listener
w_w_w_.___j_a___va_2___s__.com__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.