Upgraded from 15 to 16.2, .net framework 4.5.2, pages with webdatamenu do not display the menu and cause all other infragistics controls on the page to not display. This behavior is only in IE 11. Seems to work fine in Chrome and Firefox.
Going back to 15 for now.
Hi,
Do you use IE 11 in compatibility view mode ? If yes, then most probably that is result of a well known issue that is already fixed and will be available in the next 16.2 service release. Next release is actually scheduled for tomorrow, 30rd of March, so once it is available for download on the Infragistics website you can upgrade and verify if issue still exist.
Great, thanks, I'll download it.
That's fine. You can update this thread if you need further assistance after upgrading.
hi:
I downloaded and installed the latest service release (Version=16.2.20162.2056), the webdatamenu will not display in IE 11 compatibility view and only displays if I uncheck the "Display intranet sites in compatibility view".
Is the issue fixed or do I need to download/install a different service release?
Thanks
Hi Periannan,
I have expressed a wrong statement when saying that issue is fixed for the Compatibility View Mode. Actually we changed our code to support IE8 at oldest, while IE in Compatibility mode actually emulates IE7 browser.
We are reluctant to change our code base in order to support IE7, so my solution is overriding the js functions that contains the lines causing issues. I have put those in a js file that is attached to this thread. Please reference this file in your solution, and you will need to call the function on body load event:
<head runat="server"> <title></title> <script type="text/javascript" src="ie7fix.js"></script></head><body onload="addPollyfill()">
Please let me know if you have further questions on the matter, I will be glad to help.
Hi Hristo:
Thanks for the guidance.
The JS file worked and fixed the display issue in IE 11 compatibility view.