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

Render

PreviousSSRS ComponentNextConfiguration

Last updated 3 years ago

Class

The WireBootstrap SSRS Component extends the class. As such, it inherits all the base functionality of that class.

To create a new instance of the component, use the wire.ssrsViewerclass.

const report = new wire.ssrsViewer();

Render

Render the component using an HTML div element.

<div id="report"></div>
<script>
    new wire.ssrsViewer().render("#report", {});
</script>
<WireComponent component="wire.ssrsViewer" config={}>
    <div></div>
</WireComponent>
<div wire-component="wire.ssrsViewer" v-wire-config=""></div>
<div wire-component="wire.ssrsViewer" [config]=""></div>
wire.ui.component