This is a migrated thread and some comments may be shown as answers.

[Solved] Odd issue on production with IE and Menu

2 Answers 101 Views
Menu
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Mike
Top achievements
Rank 2
Mike asked on 13 Jul 2010, 06:08 PM
I am experiencing an issue with the Menu control that seems to only effect the production version and only on IE. I am using IE8 on Windows 7. Basically on production when I hover over a top level menu, and the children are display, the transition effects don't work, and the sub menus are offset to the right instead of being directly underneath the parent tab. It works as it should on localhost in IE, and it works both on localhost and production fine with Chrome, Safari and FireFox. See the attached screenshots. Any idea's on how I can solve this problem? 

Thanks!

2 Answers, 1 is accepted

Sort by
0
Atanas Korchev
Telerik team
answered on 14 Jul 2010, 07:02 AM
Hi Mike,

Is there a chance you provide a live url? We cannot tell what has gone wrong without reproducing the problem somehow. You could open a support ticket in case private info needs to be exchanged.

Regards,
Atanas Korchev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
russ
Top achievements
Rank 1
answered on 18 Aug 2011, 07:05 AM
I've just hit this one.  Appears to be caused by Internet Explorer setting "Tools > Compatibility View Settings > Display intranet sites in Compatibility View".

My first thought was to add some meta tag to disable compatibility view, no luck.  You need to send the response header from your webserver, add this to your webconfig

<system.webServer>
  <!-- fix for intranet sites getting displayed in IE compatibility mode -->
  <httpProtocol>
    <customHeaders>
      <add name="X-UA-Compatible" value="IE=edge" />
    </customHeaders>
  </httpProtocol>   
</system.webServer>

More info here:
http://stackoverflow.com/questions/2518256/override-intranet-compatibility-mode-ie8/5887546#5887546
http://social.msdn.microsoft.com/Forums/is/iewebdevelopment/thread/acf1e236-715b-4feb-8132-f88e8b6652c5#36404ffe-626f-4cf2-9f92-9e0e068cc3fc

Tags
Menu
Asked by
Mike
Top achievements
Rank 2
Answers by
Atanas Korchev
Telerik team
russ
Top achievements
Rank 1
Share this question
or