function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
miku1051miku1051 

Visualforce lookup issue in Internet Explorer...???

I have a Visualforce page with a lookup. When looked up, the result can be selected but the window does not close, forcing it to press the "Close Window"(cross window) button. I am using internet explorer 9. its working fine on IE 8 but not on IE 9.I am trying to solve this issue from last 2 days.i need urgent help.is it possible to run in compatability mode in IE9..please help...

Any suggestions?

Thanks in advance.

Best Answer chosen by Admin (Salesforce Developers) 
miku1051miku1051

try this it solved my problem..copy exactly this in your VF page after <apex:page>..

<html>
<head>
<!-- Enable IE9 Standards mode -->
<meta http-equiv="X-UA-Compatible" content="IE=9" />
<title></title>
</head>
<body>
<p></p>
</body>
</html>

 

Also let me know if this solved your problem....

All Answers

chris_centrachris_centra

did you ever find a resolution to this?  i'm seeing the same issue.

thanks

chris

miku1051miku1051

try this it solved my problem..copy exactly this in your VF page after <apex:page>..

<html>
<head>
<!-- Enable IE9 Standards mode -->
<meta http-equiv="X-UA-Compatible" content="IE=9" />
<title></title>
</head>
<body>
<p></p>
</body>
</html>

 

Also let me know if this solved your problem....

This was selected as the best answer
chris_centrachris_centra

wow - worked perfectly!  thanks so much!

miku1051miku1051
You're welcome..:)