Passing Values to Report Parameters from Components Outside the HTML5 Report Viewer
This topic explains how to use custom parameters UI to update the report parameters instead of using the report viewer's default implementation of the parameters area. The report and all required parameters for it are packed in a ReportSource object. To update the report source the ReportViewer.reportSource(rs) method is used.
To give an example we will use the Invoice report from our examples and will update its OrderNumber parameter from a custom parameter UI.
Pass values to report parameters
All path references in the described steps should be adapted according to your project setup. For more information please refer to the MSDN article ASP.NET Web Project Paths
- Add a new html page CustomParameters.html to the CSharp.Html5Demo or VB.Html5Demo project.
-
Add the references to all required JavaScript libraries and stylesheets:
-
Add the custom parameter UI - a dropdown selector with a few values:
-
Add the ReportViewer placeholder
-
Now initialize the report viewer. We will use the minimal set of all possible options. Please note how the value from the custom UI is used to set the OrderNumber report parameter initially:
-
Add code that updates the ReportSource parameters collection with the selected Invoice Id from the dropdown box:
-
The HTML page that we have just created should look like this:
Run the project and verify that the Invoice Id selection really updates the report.