Skip to main content

Checkboxes

Allow users to select multiple options from a list. This component uses the base structure of the Input component.

Legend
<Checkboxes label="Legend">
<Checkbox id="checkbox_1" value="1" label="Option 1" />
<Checkbox id="checkbox_2" value="2" label="Option 2" />
</Checkboxes>

Usage

To follow user-centred design and GDPR best practices, we should only ask users for information we need. In that respect, all form fields of the Pallote component library are by default required.

For the CSS library, you do not need to add the required property to the form fields, it is added automatically with the javascript import.

Props

Direction

Portrait
Landscape
<Checkboxes label="Portrait">
<Checkbox id="portrait_1" value="1" label="Option 1" />
<Checkbox id="portrait_2" value="2" label="Option 2" />
</Checkboxes>

<Checkboxes label="Landscape" direction="landscape">
<Checkbox id="landscape_1" value="1" label="Option 1" />
<Checkbox id="landscape_2" value="2" label="Option 2" />
</Checkboxes>

Error

Error

This is the error message

<Checkboxes label="Error" error="This is the error message">
<Checkbox id="error_1" value="1" label="Option 1" />
<Checkbox id="error_2" value="2" label="Option 2" />
</Checkboxes>

Disabled

Disabled
<Checkboxes label="Disabled" disabled>
<Checkbox id="disabled_1" value="1" label="Option 1" />
<Checkbox id="disabled_2" value="2" label="Option 2" />
</Checkboxes>

Optional

Optional
<Checkboxes label="Optional" optional>
<Checkbox id="optional_1" value="1" label="Option 1" />
<Checkbox id="optional_2" value="2" label="Option 2" />
</Checkboxes>

Hint

Hint

This is a hint to give more details

<Checkboxes label="Hint" hint="This is a hint to give more details">
<Checkbox id="hint_1" value="1" label="Option 1" />
<Checkbox id="hint_2" value="2" label="Option 2" />
</Checkboxes>