gpt4 book ai didi

javascript - .net ReportViewer javascript 错误

转载 作者:行者123 更新时间:2023-11-30 06:36:20 25 4
gpt4 key购买 nike

我在 Web 表单中使用 ReportViewer(2012,版本 11)用户控件,该表单加载到 MVC 单页应用程序的 iframe 中。我发现我运行了一个报告并且它工作正常,但是然后我转到另一个报告它不会运行直到我刷新。

之前带有 iframe 的内容部分已从 dom 中删除,因此我看不出它会如何干扰下一个报告。我的猜测是报表查看器污染了全局命名空间。

无论如何错误是

TypeError: cs is null
return cs.getPropertyValue('direction');

有谁知道这件事,或者是否有一种方法可以在 reportviewer 之后进行清理,或者是否有更好的 reportviewer 控件?

最佳答案

我的申请和你的类似。我正在使用 jQuery 将 ReportViewer 加载到 DOM 元素(嵌入到 iframe 中)。

类似的东西:

var formargs = $("#reportArgsForm").serialize();
var windowheight = $("#content").height() - 8;
var link = '<iframe id="report_iframe" style="height:' + windowheight + 'px;width:99%;overflow: visible;" src="Reports/SimpleReportViewer.aspx?' + formargs + '"></iframe>';

$("#tabs").tabs("option", "active", 1);
$("#tabs-display").html(link);

如果您注意到,报告实际上显示在它自己的 jQuery-UI 选项卡中。我遇到了同样的错误,因为我已经升级到 jQuery-UI 1.10.1 和选项卡 "select" method wasn't working any more .

在我的案例中,错误深埋在 Microsoft.Reporting.WebFormsClient._InternalReportViewer.GetRTLDirection 中。报表查看器代码试图在某些元素上调用 window.getComputedStyle,但它返回 null。它为 null,因为传入的元素不可见。

一旦我修复了 jQuery-UI 选项卡切换问题,ReportViewer 错误(“cs is null”)就消失了。

关于javascript - .net ReportViewer javascript 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14219521/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com