Filter Component

The WireBootstrap Azure Search Filter provides a user interface to all the features of the WireBootstrap Azure Search Connector.

Class

The WireBootstrap Azure Search Filter extends the wire.ui.component class. As such, it inherits all the base functionality of that class.

To create a new instance of the filter labels component, use the wire.azSearchFilter class.

const search = new wire.azSearchFilter();

Render

Render the component using an HTML div element.

<div id="search"></div>
...
search.render("#search",{
    ...
});

Last updated