โปรแกรมดูรายงาน Birt ไม่ทำงานใน IE9

ฉันใช้โปรแกรมดูรายงาน birt เพื่อแสดงรายงาน มันทำงานได้ดีใน IE8 แต่โปรแกรมดูไม่ทำงานใน IE 9 กรุณาช่วย

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title> </title>
</head>
<body>

<birt:viewer

id="birtViewer" 
reportDesign='<%=request.getParameter("name")%>'
height="650"
width="900"
showParameterPage="false"
svg="true" >

</birt:viewer>

</body>
</html>

person ITIANS    schedule 28.03.2012    source แหล่งที่มา


คำตอบ (2)


ไปที่ webcontent/birt/pages/layout/FramesetFragment.jsp

เพิ่มบรรทัดนี้

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

as

<META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" >
<LINK REL="stylesheet" HREF="/thbirt/styles/style.css" TYPE="text/css">
person user826163    schedule 22.05.2012

เปิด IE9 จากแถบเมนูด้านบน คลิกเครื่องมือ--> การตั้งค่ามุมมองที่เข้ากันได้ --> ทำเครื่องหมายที่ช่อง 'แสดงเว็บไซต์ทั้งหมดในมุมมองที่เข้ากันได้' คลิกที่ปุ่ม 'ปิด'

สิ่งนี้ควรทำให้ BIRT viewer ทำงาน และรายงานจะถูกแสดง

person user2449230    schedule 03.06.2013