This seems to be pretty straight forward as soon as one breaks through the code executed by dojo !!!
In the object passed to the dojo.dnd.Target constructor, you must set the skipForm attribute to true.
so, it looks something like this:
var dndTarget = new dojo.dnd.Target(searchBox, {
isSource: false,
copyOnly: true,
selfCopy: false,
selfAccept: false,
skipForm: true
});
This seems to tell dojo not to connect to input elements and therefore works as expected in IE.
source
share