Reporting Services
Docs HomeProduct SiteSupport
  • WireBootstrap for SSRS
  • Installation
  • SSRS Component
    • Render
    • Configuration
  • Report Viewer
Powered by GitBook
On this page
  • Report Path
  • Report Parameters
  1. SSRS Component

Configuration

PreviousRenderNextReport Viewer

Last updated 3 years ago

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

Property Name
Default
Description

autoInit

true

Determines whether the report loads when the render method is called.

height

window.height

The height of the report iframe. Defaults to a dynamic height based on the window dimensions.

listen

true

Determines whether data events are set up to listen for changes to data on the page.

parameters

reportPath

reportViewerUrl

./ReportViewer.aspx

showParameterPrompts

false

spinner

true

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 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" }
    ]
});

The data parameters sent to the report. See for details.

The relative path to the report file on the SSRS server. See for details.

The URL to the page hosting the Report Viewer component. See for details.

Determines whether the report shows its parameters above the report. This is a short-cut to the .

ReportPath
Report Viewer
same property on the Report Viewer component
Report Parameters
Report Path