Last updated 2 years ago
Was this helpful?
iCheck List for WireBootstrap enhances basic Bootstrap checkboxes and radio buttons.
Use the icheckList class to create an instance of the iCheck List for WireBootstrap component.
icheckList
const myList = new wire.icheckList();
Render the component using an HTML ul element.
ul
<ul id="list"></ul> <script> new wire.icheckList().render("#list", {}); </script>
<wire-icheck-list wr-config=""></wire-icheck-list>
<WireComponent component="wire.icheckList" config={}> <ul></ul> </WireComponent>
<ul wire-component="wire.icheckList" v-wire-config=""></ul>
<ul wire-component="wire.icheckList" [config]=""></ul>