Checkbox
The checkbox input uses HTML's native checkbox input. It can display one or many options to a user and is a great way to allow users to select multiple items from a list. FormKit supports both single and multiple checkbox inputs.
Single checkbox
By default the checkbox type will render a single checkbox and uses boolean values. In order for a single checkbox to be checked — the current value of the input must match the on-value of that input (by default, a single checkbox uses true as the on-value).
<template> <FormKit type="form" :actions="false" #default="{ value }"> <FormKit type="checkbox" label="Terms and Conditions" help="Do you agree to our terms of service?" name="terms" :value="true" validation="accepted" validation-visibility="dirty" /> <pre wrap>{{ value }}</pre> </FormKit></template>In order to improve API consistency across all FormKit inputs — FormKit uses the value as the initial state of the input. The checked prop/attribute should not be used directly.
Multiple checkboxes
To output multiple checkboxes with a single input use the options prop. Options can be specified 3 ways:
- An array of strings
- An object of value/label pairs
- An array of objects with
labelandvalueproperties (the same as the select and radio inputs)
The value of a checkbox input with multiple options is an array of the selected values.
Array of strings
The simplest way to provide options is an array of strings. The provided strings will be used for both the label and the value of the option.
<FormKit v-model="value" type="checkbox" label="Toppings" :options="['Mushrooms', 'Olives', 'Salami', 'Anchovies']" decorator-icon="happy" help="Select your pizza toppings" validation="required|min:3"/><pre wrap>{{ value }}</pre>[]
Value / Label object
You may also provide the options prop where the keys are values and the values of each property are labels.
<script setup>import { ref, computed } from 'vue'const value = ref([])const sum = computed(() => { return new Intl.NumberFormat('en-US') .format(value.value.reduce((sum, price) => Number(price) + sum, 0))})</script><template> <FormKit v-model="value" type="checkbox" label="Trim extras" :options="{ 650: 'Leather seats ($650)', 1200: 'Sweet rims ($1,200)', 13250: 'Gold leaf ($13,250)', 500: 'Massaging seats ($500)' }" help="Configure your car’s trim options" /> <pre wrap>Extra cost: ${{ sum }}</pre></template>Extra cost: $0
Array of objects
The most flexible way to define options is by providing an array of objects. The objects must include value and label properties — but may also include a help property as well as an attrs object of additional attributes to apply to each checkbox input tag.
<FormKit v-model="value" type="checkbox" label="Indian food" :options="[ { value: 'item-2', label: 'Bhajji', help: 'Fried chickpea batter — spicy.', }, { value: 'item-55', label: 'Vada Pav (out of stock)', help: 'Fried vegetarian dumplings.', attrs: { disabled: true }, }, { value: 'item-22', label: 'Paratha', help: 'Flatbread layered and pan friend.', }, { value: 'item-44', label: 'Halwa', help: 'Pudding made with flour.', }, ]" help="Select your favorite Indian dishes."/>Props & Attributes
| Prop | Type | Default | Description |
|---|---|---|---|
decorator-icon | String | ’’ | Specifies an icon to put in the decoratorIcon section. Shows when the checkbox is checked. Defaults to the checkboxDecorator icon. |
options | Array/Object | [] | An object of value/label pairs or an array of strings, or an array of objects that must contain a label and value property. |
on-value | any | true | The value when the checkbox is checked (single checkboxes only). |
off-value | any | false | The value when the checkbox is unchecked (single checkboxes only). |
| Show Universal props | |||
config | Object | {} | Configuration options to provide to the input’s node and any descendent node of this input. |
delay | Number | 20 | Number of milliseconds to debounce an input’s value before the commit hook is dispatched. |
dirtyBehavior | string | touched | Determines how the "dirty" flag of this input is set. Can be set to touched or compare — touched (the default) is more performant, but will not detect when the form is once again matching its initial state. |
errors | Array | [] | Array of strings to show as error messages on this field. |
help | String | '' | Text for help text associated with the input. |
id | String | input_{n} | The unique id of the input. Providing an id also allows the input’s node to be globally accessed. |
ignore | Boolean | false | Prevents an input from being included in any parent (group, list, form etc). Useful when using inputs for UI instead of actual values. |
index | Number | undefined | Allows an input to be inserted at the given index if the parent is a list. If the input’s value is undefined, it inherits the value from that index position. If it has a value it inserts it into the lists’s values at the given index. |
label | String | '' | Text for the label element associated with the input. |
name | String | input_{n} | The name of the input as identified in the data object. This should be unique within a group of fields. |
parent | FormKitNode | contextual | By default the parent is a wrapping group, list or form — but this props allows explicit assignment of the parent node. |
prefix-icon | String | '' | Specifies an icon to put in the prefixIcon section. |
preserve | Boolean | false | Preserves the value of the input on a parent group, list, or form when the input unmounts. |
preserve-errors | Boolean | false | By default errors set on inputs using setErrors are automatically cleared on input, setting this prop to true maintains the error until it is explicitly cleared. |
sections-schema | Object | {} | An object of section keys and schema partial values, where each schema partial is applied to the respective section. |
suffix-icon | String | '' | Specifies an icon to put in the suffixIcon section. |
type | String | text | The type of input to render from the library. |
validation | String, Array | [] | The validation rules to be applied to the input. |
validation-visibility | String | blur | Determines when to show an input's failing validation rules. Valid values are blur, dirty, and live. |
validation-label | String | {label prop} | Determines what label to use in validation error messages, by default it uses the label prop if available, otherwise it uses the name prop. |
validation-rules | Object | {} | Additional custom validation rules to make available to the validation prop. |
value | Any | undefined | Seeds the initial value of an input and/or its children. Not reactive. Can seed entire groups (forms) and lists.. |
Sections
The checkbox input has a different construction depending on if it's a single or multiple checkbox.
You can target a specific section of an input using that section's "key", allowing you to modify that section's classes, HTML (via :sections-schema, or content (via slots)). Read more about sections here.
Single checkbox
When no options prop is provided, a single checkbox is rendered with a label beside it.
Click on a section to lock focus to the chosen section. Click locked section again to unlock.
Multiple checkboxes
When an options prop is provided, multiple checkboxes are rendered inside a fieldset.
Click on a section to lock focus to the chosen section. Click locked section again to unlock.
| Section-key | Description |
|---|---|
decorator | Responsible for the element immediately following the input element — usually used for styling custom checkboxes. |
decoratorIcon | An element containing the decorator icon. |
legend | Responsible for the fieldset’s legend element. |
fieldset | Responsible for the fieldset when multiple options are available. |
option | Responsible for the wrapper around each item in the options. |
options | Responsible for the wrapper element around all of the option items. |
| Show Universal section keys | |
outer | The outermost wrapping element. |
wrapper | A wrapper around the label and input. |
label | The label of the input. |
prefix | Has no output by default, but allows content directly before an input element. |
prefixIcon | An element for outputting an icon before the prefix section. |
inner | A wrapper around the actual input element. |
suffix | Has no output by default, but allows content directly after an input element. |
suffixIcon | An element for outputting an icon after the suffix section. |
input | The input element itself. |
help | The element containing help text. |
messages | A wrapper around all the messages. |
message | The element (or many elements) containing a message — most often validation and error messages. |
Accessibility
All FormKit inputs are designed with the following accessibility considerations in mind. Help us continually improve accessibility for all by filing accessibility issues here:
- Semantic markup
- ARIA attributes
- Keyboard accessibility
- Focus indicators
- Color contrast with the provided theme
- Accessible labels, help text, and errors
Single checkbox accessibility attributes
| Section Key | Attribute | Value | Description |
|---|---|---|---|
decorator | aria-hidden | true | Hides the decorator from screen readers. |
| Universal Accessibility Attributes | |||
label | label | for | Associates a label to an input element. Users can click on the label to focus the input or to toggle between states. |
input | input | disabled | Disables an HTML element, preventing user interaction and signaling a non-interactive state. |
aria-describedby | Associates an element with a description, aiding screen readers. | ||
aria-required | Added when input validation is set to required. | ||
icon | icon | for | Links icon to input element when icon in rendered as a label. |
Multiple checkbox accessibility attributes
| Section Key | Attribute | Value | Description |
|---|---|---|---|
fieldset | aria-describedby | Associates an element with a description, aiding screen readers. | |
decorator | aria-hidden | true | Hides the decorator from screen readers. |
| Universal Accessibility Attributes | |||
label | label | for | Associates a label to an input element. Users can click on the label to focus the input or to toggle between states. |
input | input | disabled | Disables an HTML element, preventing user interaction and signaling a non-interactive state. |
aria-describedby | Associates an element with a description, aiding screen readers. | ||
aria-required | Added when input validation is set to required. | ||
icon | icon | for | Links icon to input element when icon in rendered as a label. |
Keyboard Interactions
| Keyboard Event | Description |
|---|---|
| Space | Toggles the checked state of the currently focused input. |
| Universal Keyboard Events | |
| Tab | Moves the focus to the next focusable element on the page. |
| Shift+Tab | Moves the focus to the previous focusable element on the page. |