Render

Class

The WireBootstrap SSRS Component extends the wire.ui.component 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>

Last updated