Configuration

Use the following configuration options to bind the WireBootstrap SSRS Component to a report.

Report Path

Use the reportPath property to specify the path to the report relative to the report server. This is a short-cut to the Report Viewer control's ReportPath property.

new wire.ssrsViewer().render("#report", {
    reportPath: "/Sales Reports/Sales by Product"
});

Report Parameters

Use the parameters property to specify the parameters for the report. Optionally, values for each can also be specified.

new wire.ssrsViewer().render("#report", {
    ...
    parameters: [
        { Name: "Region", Value: "Central" }
    ]
});

Last updated