BUG
When clicking the X to dismiss an Identify Result window in Mozilla Firefox 3, the Identity tool unexpectedly re-executes and opens a new Identify Result window.
This issue applies to the Identify tool that is included in the Web Mapping Application for the ArcGIS Server .NET Web ADF.
A code change is required in the Identify tool to account for Mozilla Firefox 3.
Code:
onmousedown="closeIdentifyPanel(this)"
Code:
onmousedown="closeIdentifyPanel()"
Code:
closeIdentifyPanel()
Code:
function closeIdentifyPanel() {
var dropdown = $get("dropdown_" + arcgisIdentifyTool.get_id());
if (dropdown) dropdown.style.display = "none";
var delay = (Sys.Browser.agent == Sys.Browser.Firefox && Sys.Browser.version >= 3) ? 500 : 0;
window.setTimeout("arcgisIdentifyTool.clearOutCallout();", delay);
};
Article ID: 000010257
Get help from ArcGIS experts
Download the Esri Support App