Use XMLListCollection as the PopUpMenuButton data source : 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 XMLListCollection as the PopUpMenuButton data source
Use XMLListCollection as the PopUpMenuButton data source
     
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:PopUpMenuButton labelField="@label">
        <mx:dataProvider>
            <mx:XMLListCollection>
                <mx:XMLList>
                    <item label="ActionScript">
                        <item label="S" />
                        <item label="B" />
                    </item>
                    <item label="MXML">
                        <item label="A" />
                        <item label="C" />
                    </item>
                </mx:XMLList>
            </mx:XMLListCollection>
        </mx:dataProvider>
    </mx:PopUpMenuButton>
</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 PopUpMenuButton change event to set the labelUse PopUpMenuButton change event to set the label
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___v_a_2__s___.c__o__m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.