Completed
Last Updated: 01 Jun 2016 11:24 by ADMIN
ADMIN
Ivaylo
Created on: 23 Sep 2015 08:22
Type: Bug Report
4
Mouse events are not triggered under IE
The following mouse events are not triggered with IE, they work fine with Firefox and :


                        MouseEvent mouseClickEvent = newMouseEvent("click");
			mouseClickEvent.CanBubble = true;
			mouseClickEvent.IsCancelable = true;
 
			MouseEvent mouseDownEvent = newMouseEvent("mousedown");
			mouseDownEvent.CanBubble = true;
			mouseDownEvent.IsCancelable = true;
 
			MouseEvent mouseUpEvent = newMouseEvent("mouseup");
			mouseDownEvent.CanBubble = true;
			mouseDownEvent.IsCancelable = true;
 
			anchor.InvokeEvent(mouseDownEvent);
			anchor.InvokeEvent(mouseClickEvent);
			anchor.InvokeEvent(mouseUpEvent);


Steps to reproduce: 


Execute the project attached.
1 comment
ADMIN
Pavel
Posted on: 01 Jun 2016 11:24
This issue is resolved and the fix will be available in our next official release.