Can someone give me a pointer on how to begin this? Imagine a shopping cart that contains images of items. I want to allow users to drag items out of the shopping cart and when they drop them, the items are removed.
Detecting DRAG_COMPLETE and removing the items is not my problem. My problem is giving the user feedback that they can drop the item they are dragging _outside_ of the shopping cart. Default behavior shows a red x on my DragProxy no matter where it goes. I would like the DragProxy to display a trashcan image when the user leaves the shopping cart no matter what object they are dragging over. I suppose the problem is all the other components are saying "no" during the DRAG_ENTER event. Maybe I have to fake the whole drag/drop concept to pull this off? -- jim