Hello together, maybe someone of you are facing the same issue as I do? We develop JSF Dialogs, in Firefox and other Browser everything is working fine but not with Internet Explorer. asked 04.04.2018 at 08:37 roland Alex Suter ♦♦ |
To fix this in my case it is needed to switch of the compatibilitymode. This could be done manually per client, but this is not working if there are to many clients in network which are not central maintained. To solve this you can either add the tag <meta http-equiv="X-UA-Compatible" content="IE=Edge"> on every page. https://www.codeproject.com/Tips/1030600/Forcing-IE-to-Load-a-Web-Page-in-Edge-Document-Mod or if you are Using IIS as frontend webserver you can add a custom header in IIS https://docs.microsoft.com/en-us/iis/configuration/system.webserver/httpprotocol/customheaders/ Therefore open IIS and navigate to the webpage (in my case Default Web Site) you want to have the header in. Open the response header configuration and add a new header with name X-UA-Compatible and value IE=Edge After this configuration every side is used without compatibility mode. originally posted by: Roland answered 05.04.2018 at 03:42 Alex Suter ♦♦ Just for completeness: To test whether the compatibility mode is the cause for your issues at first hand, just disable them via the settings menu > Compatibility view settings.
(09.05.2019 at 02:55)
Reguel Werme... ♦♦
|
Once you sign in you will be able to subscribe for any updates here
By RSS:Markdown Basics
Tags:
Asked: 04.04.2018 at 08:37
Seen: 3,649 times
Last updated: 09.05.2019 at 02:56
cool thanks. for sharing!
thanks! i convert that thread to a question & answer