(sorry, I could not find ReportViewer in the Control list when posting this thread)...
I want the report viewer to be able to show reports from a folder containing various reports which may or may not have parameters.
My report viewer works when the selected report has no parameters, but when a report is selected that has parameters, I just see a spinny controll which sits there forever. I do not see a parameters pane.
I am using SyncFusion Reporting (MVC ) version 18.1460.0.42.
As an example, I am using a report supplied by SyncFusion which takes 1 parameter.
@(Html.EJ().ReportViewer("viewer").ProcessingMode(Syncfusion.JavaScript.ReportViewerEnums.ProcessingMode.Local)
.ReportPath("~/Reporting/sales-order-detail.rdl")
.ReportServiceUrl("/api/ReportsService/"))
Here is the result (no parameter pane):
What am I doing wrong?