cancel
Showing results for 
Search instead for 
Did you mean: 

Make Share compatible with IE 10 Enterprise 4.2

ayubalfresco
Champ in-the-making
Champ in-the-making
The alfresco-template.ftl file has the compatiblility set to as shown below:


<meta http-equiv="X-UA-Compatible" content="IE=Edge" />


I want to hardcode to IE=10, I tried to override this file using extension. However it did not work.

I also tried to override header.get.ftl file by including the below code, no change..



<@markup id="html">
<head><meta http-equiv="X-UA-Compatible" content="IE=10" /></head>
…the rest of the tags


Could some one give me a tip on how I can make share to use IE 10 settings and not use IE=Edge ?

Thank you.
4 REPLIES 4

afaust
Legendary Innovator
Legendary Innovator
Hello,

you can not customize that file using extension UNLESS you customize every FTL file that includes it via the @include / @import directive.

But why do you want to hard-code the IE 10 settings anyway? What benefits do you plan to get from this compared to the Edge setting, when Edge is the recommended setting?

Regards
Axel

ayubalfresco
Champ in-the-making
Champ in-the-making
Hi Afaust,

Our environment has IE 11 and IE=Edge is making it run using IE11 which is causing display issues for Share. We want to hardcode IE=10 to resolve display issues.

Could you please also give me some tip on how to proceed with this issue:
https://forums.alfresco.com/forum/developer-discussions/alfresco-share-development/edit-online-my-fi...

afaust
Legendary Innovator
Legendary Innovator
Hello Ayub,

ok, that makes sense. But the issue with the customization remains the same. You would have to modify the FTL within the WEB-INF directory if you want to avoid the extreme measure of customizing every file that includes it.
Have you looked at some community projects that deal with this? There is <a href="https://github.com/LotharMaerkle/alfext">a GitHub repository of Lothar Märkle</a> for example which contains some fixes for IE11 issues in Alfresco 4.2 (Community).

Regards
Axel

ayubalfresco
Champ in-the-making
Champ in-the-making
Thank you for providing your valuable tips and guidance. I am not sure if the above fix for IE 11 would work even for 4.2 Enterprise. I will try it out.

Thank you
Ayub