Hello,
I would like to display an rdlc report with the viewer, but it is looking for only rdl files.
I tried to modify the processing mode in js, but nothing helps:
window.BoldReports = {
RenderViewer: function (elementID, reportViewerOptions) {
$(`#${elementID}`).boldReportViewer({
reportPath: reportViewerOptions.reportName,
processingMode: ej.ReportViewer.ProcessingMode.Local, ---- ??? ----
reportServiceUrl: reportViewerOptions.serviceURL
});
}
}
It shows the following message:
Could not find file '.....\wwwroot\resources\report.rdl'.
How can I fix it?