Unplanned
Last Updated: 18 Sep 2020 11:03 by ADMIN
omti
Created on: 18 Sep 2020 11:00
Type: Bug Report
2
An error event is fired at initialization when pageMode is set

If there is a pageMode option, An error event is fired at initialization, even if no error occurred.

The problem can be reproduced with the HTML5 demo:

$("#reportViewer1")
                .telerik_ReportViewer({
                    serviceUrl: "api/reports",
                    reportSource: {
                        report: "Telerik.Reporting.Examples.CSharp.ReportCatalog, CSharp.ReportLibrary",
                        parameters: {}
                    },
                    viewMode: telerikReportViewer.ViewModes.INTERACTIVE,
                    pageMode: telerikReportViewer.PageModes.SINGLE_PAGE,
                    scaleMode: telerikReportViewer.ScaleModes.SPECIFIC,
                    scale: 1.0,
                    enableAccessibility: false,
					sendEmail: { enabled: true },
					ready: function () { debugger; },
					error: function (e, args) { debugger; }
                });


0 comments