Render

Class

The WireBootstrap Qlik 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.qlikComponent class.

const qlik = new wire.qlikComponent();

Render

Render the component using an HTML div element.

<div id="qlik"></div>
<script>
    new wire.qlikComponent().render("#qlik", {});
</script>

Last updated