Checkboxes

Bootstrap's Checkboxes enhance basic HTML radio and checkbox options.

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