Mon May 11, 2015 4:20 am by ThomasTJ
ThomasTJ wrote:riskiana wrote:hi kindrosker, I've got the same problem too. So..how the solution ??
Hi,
I've got the same problem - if you enable developer tab (F12) and choose emulation and the change the user agent strint til "IE 10", everything should work properly.
@Kindrosker, do you have a quick fix? Through my search on the internet, the page can tweak the browser to emulate in IE10, by adding some code to the header (see A1).
1) Where is the header file/Where to put A1? It should be stated as the first thing in the header.
2) Are you working on a solution so IE11 will work without?
A1:
- Code:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE10">
And here is the solution:1) qdpm/core/apps/qdPMExtended/templates/layout.php
2) Add this line:
- Code:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE10">
3) So the code look like this:
- Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE10">
<?php include_title() ?>