Planned
Last Updated: 29 Jul 2020 09:49 by ADMIN
David
Created on: 29 Jul 2020 09:42
Type: Bug Report
2
HTML5 Report Viewer is blank when its visibility is changed and restored

If the HTML5 Report Viewer gets hidden on renderingBegin(e, args) event and shown on renderingEnd(e, args) event, its toolbar is shown, but the contents are still invisible.

Code snippet that demonstrates the issue:

$("#reportViewer1")
    .telerik_ReportViewer({
		... initialization script goes here
        renderingBegin: function (e, args) {
           $("#reportViewer1").hide();
        },
        renderingEnd: function (e, args) {
           $("#reportViewer1").show();
        }
    });

0 comments