Quantcast
Channel: Neil McDonald's Dynamics CRM Blog » javascript
Viewing all articles
Browse latest Browse all 9

IE8 crashing when using picklists in Advanced Finds

$
0
0

I’ve been having an issue where IE8 would crash when trying to use picklists in advanced finds (see below example).

It may not be a common issue, but I posted it on the MS partner forums and got the below response which has fixed it for me, so hopefully it will help someone else out too!

Edit AdvFind.aspx and add the following code. AdvFind.aspx can be found in the CRM web directoryAdvancedFind

NOTE: The code needs to be added right below function window.onload(){

<% if (Request.Params["AutoRun"] != "False")
{
%>
if (location.href.indexOf("?") > 0)
location.href = location.href + "&AutoRun=False";
else
location.href = location.href + "?AutoRun=False";
<%
}
%>


Viewing all articles
Browse latest Browse all 9

Trending Articles