Checkboxes

Home Search

Checkboxes

The checkbox has the following options:

mini boolean

default: false

Sets the size of the element to a more compact, mini version. This option is also exposed as a data attribute: data-mini="true"

$("input[type='checkbox']").checkboxradio({ mini: "true" });
theme string

default: null, inherited from parent

Sets the color scheme (swatch) for all instances of this widget. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, it will inherit the same swatch color as it's parent container if not explicitly set. This option is also exposed as a data attribute: data-theme="a"

$("input[type='checkbox']").checkboxradio({ theme: "a" });