4

我将报告嵌入到 iframe 中(使用 .NET ReportingServices 获取报告)

加载报告后,我想启动一个 Javascript 函数。

我试过:

window.addEventListener("load", ...)

但由于报告结果是用 Javascript 加载的,window.load因此在报告有效加载之前触发。

是否有一些 Javascript 函数可以让我处理报告负载?像:

the_report.loaded(function () {
  alert(document.height);
});

顺便说一句,目的是获得最终呈现的文档高度。

4

3 回答 3

3

这正是我最终得到的结果(iframe 方面)

/* This will run only when all ReportingService JS is loaded */
Sys.Application.add_load(function () {
    /* Let's consider the report is already loaded */
    loaded = true;
    /* The function to call when the report is loaded */
    var onLoad = function () {
        alert(document.body.scrollHeight);
        /* Set the report loaded */
        loaded = true;
    };
    /* The report instance */
    var viewerReference = $find("ReportViewer1");

    /* The function that will be looped over to check if the report is loaded */
    check_load = function () {
        var loading = viewerReference.get_isLoading();
        if (loading) {
            /* It's loading so we set the flag to false */
            loaded = false;
        } else {
            if (!loaded) {
                /* Trigger the function if it is not considere loaded yet */
                onLoad();
            }
        }
        /* Recall ourselves every 100 miliseconds */
        setTimeout(check_load, 100);
    }

    /* Run the looping function the first time */
    check_load();
})
于 2012-12-10T14:28:05.137 回答
2

Javascript 支持充其量是最少的。可悲的是,这些控制在大多数方面仍然落后于时代。您可以在此处找到公开和记录的内容:

http://msdn.microsoft.com/en-us/library/dd756405(VS.100).aspx

幸运的是,您可以调用 get_isLoading() 函数:

http://msdn.microsoft.com/en-us/library/dd756413(v=vs.100).aspx

尝试这样的事情:

(function() {

    var onLoad = function() {
       // Do something...
    };
    var viewerReference = $find("ReportViewer1");

    setTimeout(function() {
        var loading = viewerReference.get_isLoading();

        if (!loading) onLoad(); 
    },100);

})();
于 2012-12-10T12:27:59.210 回答
1

在 Pierre 的解决方案的基础上,我最终得到了这个。(简化为只调用一次,直到加载一次,因为它似乎在每次加载后运行)

注意:我的报告配置是 SizeToReportContent="true" AsyncRendering="false",所以这可能是我可以简化它的部分原因。

Sys.Application.add_load(function () {
    var viewerReference = $find("ReportViewer1");
    check_load = function () {
        if (viewerReference.get_isLoading()) {
            setTimeout(check_load, 100);
        } else {
            window.parent.ReportFrameLoaded();
        }
    }
    check_load();
});

于 2017-11-03T21:40:25.230 回答