Checklist
A set of checkboxes providing data multi-selection for small datasets.
Configurable properties​
- Field label: Label displayed on top of the checklist.
- Field description: Description provided below the checklist.
- Key: Binds the field to a form variable, see data binding docs.
- Options source: Checklists can be configured with an options source defining the individual choices your user can make, see options source docs.
- Disabled: Disables the checklist, for use during development.
Datatypes​
Checklists can be bound to data of the any[]
type, although for most practical cases we recommend string[]
instead. The checklist component correlates the bound data with the values of the different options.
The data representation of this checklist:
Looks like this:
{
"mailto": [
"regional-manager",
"approver"
],
}