我正在使用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>
答案 0 :(得分:3)
转到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="birt/styles/style.css" TYPE="text/css">
答案 1 :(得分:0)
打开IE9。 在顶部菜单栏中,单击工具 - &gt;兼容性视图设置 - &gt;选中“在兼容性视图中显示所有网站”框。 单击“关闭”按钮。
这应该让BIRT查看器工作,并显示报告。