Event issue with FireFox 10.x
-
jeudi 1 mars 2012 16:56
I apologize if this has been covered already, but I could not find an answer when searching.
I am coming across an issue with the click and double click events, specifically in FireFox v10.x. It seems that when double clicking on the map, both events fire. In IE 9, only the double click event fires (as expected).
Has anyone come across this issue? Any suggestions?
Thanks,
Mike Garza
http://www.garzilla.net/vemaps- Déplacé Richard_BrundrittMicrosoft Employee, Owner vendredi 16 mars 2012 18:37 (From:Bing Maps: Map Control and Web services Development)
Toutes les réponses
-
vendredi 2 mars 2012 23:33
There may be issue in firing click vs double click in certain browsers.
One of the work around would be to delay the execution of function in click event & check for click vs dblclick in that function. something as below:function click(e) { dblclick = false; clickEvent = e; setTimeout("displayInfo()", 200); } function dblClick(e) { dblclick = true; dblClickEvent = e; displayInfo(); } function displayInfo() { // logic to execute single or double click }
Hope it helps!
MSFT
Hemant Goyal- Marqué comme réponse Richard_BrundrittMicrosoft Employee, Owner samedi 10 mars 2012 13:54
-
dimanche 4 mars 2012 16:49
Hemant - Thanks for suggestion.

