Short version: is it possible to trigger mouse wheel events in the middle of a drag + drop operation?
Long version:
I am currently at the development stage for this particular function, so I have no code yet. I ask about it, so I know if it is a waste of time to continue this path, so I can create something else instead.
Basically, I have a list of items on one side, and a basket on the other. Since it stands right now, each element has an input field and a button, so you can enter a quantity and add it to the basket (and the same thing in reverse order). I want to add a drag and drop function so that you can just drag and drop objects anyway. This works great if you want only one item, but I would like to add a way to adjust the amount when dragging. The mouse wheel came to mind, since you already use the mouse to drag first.
Therefore, before diving into the code, I need to know whether it is really possible to get mouse wheel events during drag and drop, and if so, where should I add a listener?
source share