• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Is there a way to enable Browser compatibility view for throughout application.

New Here ,
Apr 13, 2016 Apr 13, 2016

Copy link to clipboard

Copied

We are using java plugin for Crystal reports which supports up to Internet Explorer 10. So i have enabled IE compatibility view to run the reports in IE11. Is there a way to enable compatibility view for entire application.

Thanks

Views

307

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
Apr 13, 2016 Apr 13, 2016

Copy link to clipboard

Copied

This isnt something that Coldfusion would do. This just needs to be set in your HTML. You should be able to use the meta tag to do this:

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

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Apr 13, 2016 Apr 13, 2016

Copy link to clipboard

Copied

LATEST

First of all, you must be absolutely sure to have <!DOCTYPE html> as the first line, nothing before it, not even a space.

Next, add this immediately below the <title> tag:

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE10" /><!-- Case sensitive - use exactly as typed -->

HTH,

^_^

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation