Manual drag-drop operations in Flex

Posted by Yarin on Stack Overflow See other posts from Stack Overflow or by Yarin
Published on 2009-08-31T16:07:12Z Indexed on 2010/04/07 8:53 UTC
Read the original article Hit count: 587

Filed under:
|
|
|

This is a two-part problem:

A) I'm implementing several irregular drag-drop operations in Flex (e.g. DataGrid ItemRenderer into Tree). My preference was modifying DragManager operations to meet my needs, and in fact using DragManager allows me to do everything I need, but I'm having serious issues with performance. For example, dragging anything over a many-columned DataGrid, whether the drag was initiated with DragManager.doDrag, or just using native ListBase drag-drop functionality, slows the drag movement to a crawl. Even if the DataGrid is disabled/ not listenening for any move/drag events, this happens. On the other hand, if the drag is initiated by calling .startDrag() on the Sprite, the drag is smooth and performs great over DataGrids and everything else. So part A would be: Is there a reason why .startDrag() operations work so well, while drags initiated through DragManager.doDrag suffer so badly when over certain components?

B) If indeed the solution is to handle drag-drops using .startDrag(), how would I go about determining what component the mouse is over when the drag is released? In my example, my dragged object is brought up to the top level of the display list, and so is being moved around in stage coordinates. mouseMove, mouseOver events don't fire on the components I'm dragging over because the mouse is constantly over the dragged component, so I would need some sort of stage.coordinate -> visibleComponentAtThatCoordinate conversion. Any thoughts on this?

Thanks alot!-- Yarin

© Stack Overflow or respective owner

Related posts about flex

Related posts about drag-and-drop