Hi, hope someone can help out with this.. I have an application that is basically a Windows style file manager/explorer. The easiest way to implement this was to make each file or directory a drag and drop source/target with one item, so that I could keep track of dropping files onto directories etc. Now I want to have a right click context menu on each item, but it looks like the drag code is grabbing the mouse-down event or something. Which makes sense, since you can drag with the right mouse button as well. Is there a way to pass that event on? I
I'm using dojo.connect to listen for the mousedown event on a div that wraps the drag/drop sources and execute my menu code, but it never gets fired.

SOLVED:Can I have a
Doh... sometimes when you're trying to do everything with dojo you forget about the regular stuff.
Added to an "a" tag inside my drag source:
onContextMenu="MyContextMenuHandler(event);"