tags:

views:

32

answers:

1

I have a List with an item renderer and would like to enable drag-and-drop onto the items in the list, rather than adding the data to the list. Is it possible to find the item that is being hovered over when dragging?

+1  A: 
edgsv
That worked, thanks! The key was to add the drag event handlers to the item renderer group (in my case, a VBox) rather than the list.
Gerald Bortis