vote up 0 vote down star

I have a Flex question. I was wondering, if I have two list boxes, and I want to drag and drop between both of them, how do I prevent the user from dragging onto the same list (thus duplicating the item? I cannot have a situation where that is the case. Thanks guys

flag

71% accept rate

2 Answers

vote up 2 vote down

Haven't tested it but I guess something like this should work:

Listen to dragStart event on both lists and set a source variable depending on event.target. Now listen to the dragDrop event on both lists and call event.preventDefault() if the source is same as the target.

link|flag
vote up 0 vote down

I found the solution, which im not sure would work for anyone else. I basically had in my two lists: `

	<mx:List id="srcList" dataProvider="{_source}"
	allowMultipleSelection="true"
	enabled="{enabled}"
	labelField="{labelField}"
	iconFunction="iconFunction"
	dragEnabled="true" 
	dropEnabled="true" 
	dragDrop="doDragDrop(event);"
	width="100%"
	height="100%"		
	/>
</mx:VBox>
<mx:VBox paddingTop="50">
	<mx:Button label="-&gt;" enabled="{enabled}" click="add()"/>
	<mx:Button label="&lt;-" enabled="{enabled}" click="rem()"/>
</mx:VBox>
<mx:VBox width="100%" height="100%">
	<mx:Label text="{right_col_heading}" />
	<mx:List id="dstList" dataProvider="{_destination}"
		allowMultipleSelection="true"
		enabled="{enabled}"
		dragEnabled="true" 
		dropEnabled="true" 
		dragDrop="doDragDrop(event);"
		width="100%"
		height="100%"
		labelField="{labelField}"
		iconFunction="iconFunction"
		verticalAlign="center"
	/>`

I basically added a dragMoveEnabled = "true" to both lists and now basically not re-add to the same list an item of itself, but just move the order (which doesnt matter to me as its a soap send and the back-logic would put it in the correct order anyway).

link|flag

Your Answer

Get an OpenID
or

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