Configuration

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

Properties

Name

Default

Description

datamap

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

checkList

The iCheck Filter for WireBootstrap component uses the iCheck List for WireBootstrap component internally. Use this pass-through property to set any native configuration setting for the iCheck List for WireBootstrap component.

color

green

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

rowsPerPage

10

Number of rows to display on each virtual page in the filter.

The following example creates a new instance of the iCheck Filter for WireBootstrap specifying that the component how 30 records per page.

const filter = new wire.icheckFilter().render("#filter", {
    ...
    rowsPerPage: 30
});

Last updated