title |
---|
ion-checkbox |
import Props from '@ionic-internal/component-api/v8/checkbox/props.md'; import Events from '@ionic-internal/component-api/v8/checkbox/events.md'; import Methods from '@ionic-internal/component-api/v8/checkbox/methods.md'; import Parts from '@ionic-internal/component-api/v8/checkbox/parts.md'; import CustomProps from '@ionic-internal/component-api/v8/checkbox/custom-props.mdx'; import Slots from '@ionic-internal/component-api/v8/checkbox/slots.md';
<title>ion-checkbox: Ionic App Checkbox to Select Multiple Options</title>import EncapsulationPill from '@components/page/api/EncapsulationPill';
Checkboxes allow the selection of multiple options from a set of options. They appear as checked (ticked) when activated. Clicking on a checkbox will toggle the checked
property. They can also be checked programmatically by setting the checked
property.
import Basic from '@site/static/usage/v8/checkbox/basic/index.md';
Developers can use the labelPlacement
property to control how the label is placed relative to the control. This property mirrors the flexbox flex-direction
property.
import LabelPlacement from '@site/static/usage/v8/checkbox/label-placement/index.md';
Developers can use the alignment
property to control how the label and control are aligned on the cross axis. This property mirrors the flexbox align-items
property.
:::note
Stacked checkboxes can be aligned using the alignment
property. This can be useful when the label and control need to be centered horizontally.
:::
import Alignment from '@site/static/usage/v8/checkbox/alignment/index.md';
Developers can use the justify
property to control how the label and control are packed on a line. This property mirrors the flexbox justify-content
property.
import Justify from '@site/static/usage/v8/checkbox/justify/index.md';
:::note
ion-item
is only used in the demos to emphasize how justify
works. It is not needed in order for justify
to function correctly.
:::
import Indeterminate from '@site/static/usage/v8/checkbox/indeterminate/index.md';
Checkbox labels can sometimes be accompanied with links. These links can provide more information related to the checkbox. However, clicking the link should not check the checkbox. To achieve this, we can use stopPropagation to prevent the click event from bubbling. When using this approach, the rest of the label still remains clickable.
import LabelLink from '@site/static/usage/v8/checkbox/label-link/index.md';
Helper and error text can be used inside of a checkbox with the helperText
and errorText
property. The error text will not be displayed unless the ion-invalid
and ion-touched
classes are added to the ion-checkbox
. This ensures errors are not shown before the user has a chance to enter data.
In Angular, this is done automatically through form validation. In JavaScript, React and Vue, the class needs to be manually added based on your own validation.
import HelperError from '@site/static/usage/v8/checkbox/helper-error/index.md';
import CSSProps from '@site/static/usage/v8/checkbox/theming/css-properties/index.md';
interface CheckboxChangeEventDetail<T = any> {
value: T;
checked: boolean;
}
While not required, this interface can be used in place of the CustomEvent
interface for stronger typing with Ionic events emitted from this component.
interface CheckboxCustomEvent<T = any> extends CustomEvent {
detail: CheckboxChangeEventDetail<T>;
target: HTMLIonCheckboxElement;
}
A simpler checkbox syntax was introduced in Ionic 7.0. This new syntax reduces the boilerplate required to setup a checkbox, resolves accessibility issues, and improves the developer experience.
Developers can perform this migration one checkbox at a time. While developers can continue using the legacy syntax, we recommend migrating as soon as possible.
Using the modern syntax involves removing the ion-label
and passing the label directly inside of ion-checkbox
. The placement of the label can be configured using the labelPlacement
property on ion-checkbox
. The way the label and the control are packed on a line can be controlled using the justify
property on ion-checkbox
.
import Migration from '@site/static/usage/v8/checkbox/migration/index.md';
:::note
In past versions of Ionic, ion-item
was required for ion-checkbox
to function properly. Starting in Ionic 7.0, ion-checkbox
should only be used in an ion-item
when the item is placed in an ion-list
. Additionally, ion-item
is no longer required for ion-checkbox
to function properly.
:::
Ionic uses heuristics to detect if an app is using the modern checkbox syntax. In some instances, it may be preferable to continue using the legacy syntax. Developers can set the legacy
property on ion-checkbox
to true
to force that instance of the checkbox to use the legacy syntax.