Pro Pack
Docs HomeProduct SiteSupport
  • Introduction
  • Installation
  • Chart.js
    • Configuration
    • Data Binding
    • Data Labels
  • Dataset Filter Labels
    • Installation
    • Configuration
    • Data Binding
  • DataTables
    • Configuration
    • Data Binding
    • Events
    • Methods
  • Date Range Picker
    • Configuration
    • Data Binding
    • Methods
  • iCheck
    • List
      • Configuration
      • Data Binding
      • Events
    • Filter
      • Configuration
      • Data Binding
  • Select2
    • Configuration
    • Data Binding
    • Events
    • Methods
  • Sparklines
    • Installation
    • Configuration
    • Data Binding
  • Toastr
    • Configuration
  • Web Frameworks
Powered by GitBook
On this page
  • Properties
  • iCheck

Was this helpful?

  1. iCheck
  2. List

Configuration

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

Properties

Name

Default

Description

all

An object that represents selecting all values from the list. This value should match the datamap schema

datamap

color

green

Check item color. Valid values are black, red, green, blue, aero, grey, orange, yellow, pink, and purple.

icheck

skin

flat

Check item style. Valid values are flat, line, minimal, square, polaris, and futurico.

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
     }
});
PreviousListNextData Binding

Last updated 4 years ago

Was this helpful?

Used to bind data to the component. See for details.

The pass-through for iCheck. See for an example.

Data Binding
native configuration
iCheck