You need to sign in to do that
Don't have an account?

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.
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
did you ever find a resolution to this? i'm seeing the same issue.
thanks
chris
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....
wow - worked perfectly! thanks so much!