vote up 0 vote down star

Hi, I'm getting up to speed with Flex and I am looking for any example of implementing a drag and drop re-sort within a vbox container. Basically I have a Vbox that contains a number of canvas's that are full width and 35px high. I want to be able to drag and drop them to re-order within the vbox.

Any help is greatly appreciated - thanks,

b

flag

67% accept rate

4 Answers

vote up 0 vote down check

Have you tried using a mx:List - drag and drop support is already built in and very easy to use - i threw together a sample for you using the dimensions you mentioned:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init()">

    <mx:Script>
    	<![CDATA[
    		import mx.controls.Alert;
    		import mx.events.DragEvent;
    		import mx.collections.ArrayCollection;

    		[Bindable]
    		private var _source:ArrayCollection = new ArrayCollection();

    		private function init():void{

    			var n:int = 10;
    			for(var i:int = 0; i < n; i++){ _source.addItem({value:Math.random()}); }

    		}

    		private function handleReorder(event:DragEvent):void{

    			Alert.show("A change was made!");

    		}

    	]]>
    </mx:Script>

    <mx:List dataProvider="{_source}" width="250" height="500" dragMoveEnabled="true" 
    		 dragEnabled="true" dropEnabled="true" dragDrop="handleReorder(event)">
    	<mx:itemRenderer>
    		<mx:Component>
    			<mx:Canvas width="100%" height="35">
    				<mx:Text text="{data.value}" width="100%" height="100%" selectable="false" />
    			</mx:Canvas>
    		</mx:Component>
    	</mx:itemRenderer>
    </mx:List>

</mx:Application>

And there is of course more info here: http://livedocs.adobe.com/flex/3/langref/mx/controls/List.html

good luck!

link|flag
Thanks to all, all comments were helpful. I wound up using a custom itemRenderer within a list to solve my problems. – WillyCornbread Mar 12 at 21:39
vote up 0 vote down

Hi Willy,

Did you solved your problem.

If yes then please let me know how you did it.

Thanks Vasu

link|flag
vote up 0 vote down

There are several ways to do this, but I believe that most of the Y values of the VBox (or x values in the HBox) are handled through Z-order of the child objects. You might simply be able to call setChildDepth( child, zPosition );

As far as dragging and dropping, you would do best to use the DragManager class: DragManager.doDrag( myUIComponent, , parentObject) is a lot more consistent and a lot smoother than startDrag and stopDrag. However, it requires you to have objects which use EventListeners for different DragEvents. Then you will need to set the acceptDrag? property of the UIComponent as well as tell the DragManager what feedback it should give.

link|flag
I think it is actually setChildIndex(child:DisplayObject, index:int):void – maclema Jul 21 at 13:57
vote up 0 vote down

If I were you, I'd first check the Flex documentation available online. There's this example. You will have to customize this for your list control's itemeditor. There's another example which you should take a look at. If you have a problem let us know.

link|flag
Thanks - the issue I'm having is that all example are list-based which my vbox is not, or deal only with simple drag drop. I need to know more about figuring the drop and re-order piece. – WillyCornbread Mar 7 at 20:39
Post some code and the actual error. – dirkgently Mar 7 at 21:04
It's the concept of calculating the drop spot and inserting into the vbox at that position - I'm trying to use the dragOver event currently, but calculating the canvas position to figure the spot to drop is my issue. – WillyCornbread Mar 7 at 21:55
If you have multiple canvases, why are you not using a List control? Your job becomes easier. – dirkgently Mar 8 at 7:50
Because I don't know and can't find any examples of doing this, this is why I am here in the first place - to find an example or solution to work with. – WillyCornbread Mar 8 at 13:50
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.