I am facing a problem with mouse-drag event form ArcGIS API for JavaScript 3.9 in Internet Explorer 11 The code is below:map.on("mouse-drag", zobraudalost);
function zobraudalost() {
alert("test");
}
The problem is that, this event doesn´t fire at IE 11 (as well as mouse-drag-start, mouse-drag-end). But on the other browsers it works fine (IE9, Firefox, Chrome). The other problem is that other mouse events (click, mouse-move, etc) work fine on IE 11, so the problem is only with the mouse-drags.Have ever you seen such problem? Do you know if there is some security settings in IE 11 which disable mouse drag events?Thank you very much.