Search List

The Bootstrap Search List component allows a list of values to be searched. The component supports server-side paging of query results using a WireBootstrap dataset and is an easy way to filter the data in other components on a page.

Use the bsSearchList
class to create an instance of the select list component inside WireBootstrap.
const searchList = new wire.bsSearchList();
Render the component using an HTML div
element.
<div id="search-list"></div>
...
searchList.render("#search-list",{
...
});
Web Component
Use the wire-bs-search-list
web component to render the component using Web Components.
<wire-bs-search-list wr-config=""></wire-bs-search-list>
Last updated