Drag and Drop Within a List : List Drag Drop « 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 » List Drag DropScreenshots 
Drag and Drop Within a List
Drag and Drop Within a List
           


<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="horizontal" creationComplete="creationHandler();">
    <mx:Script>
        
            import mx.collections.ArrayCollection;

            private function creationHandler():void
            {
                var collection:ArrayCollection = new ArrayCollection( ['A''B''C'] );
                contactList.dataProvider = collection;
            }

      
    </mx:Script>

    <mx:Panel title="Contact List:" width="200" height="200">
        <mx:List id="contactList" width="100%" height="100%"
            dragEnabled="true"
            dropEnabled="true"
            dragMoveEnabled="true"
            />
    </mx:Panel>

</mx:Application>
    
    

   
    
    
    
    
    
    
    
    
    
    
  
Related examples in the same category
1.Dragging and dropping among three List componentsDragging and dropping among three List components
2.Drag-and-drop lets you move items from one List control to anotherDrag-and-drop lets you move items from one List control to another
3.Drag drop to copy between two ListsDrag drop to copy between two Lists
4.List dropEnabled="true" ,dragMoveEnabled="true"List dropEnabled=
5.Drag And Drop List SampleDrag And Drop List Sample
6.Drag and Drop Between ListsDrag and Drop Between Lists
7.Drag-and-drop to move items from one MX List control to anotherDrag-and-drop to move items from one MX List control to another
8.Drag and drop to item in List To another ListDrag and drop to item in List To another List
9.List To List Drag and DropList To List Drag and Drop
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.