Configuration

Use the following configuration options to bind the iCheck List for WireBootstrap component.

Properties

The following example creates a new instance of the iCheck List for WireBootstrap component using a blue color with the square skin.

const list = new wire.icheckList().render("#list", {
    ...
     skin: "square",
     color: "blue"
});

iCheck

The following example sets up the pointer CSS cursor over enabled inputs and default over disabled inputs using the native configuration property cursor of iCheck.

const list = new wire.icheckList().render("#list", {
    ...
     icheck {
      cursor: true
     }
});

Last updated