Render a group of checkboxes from a manually-entered list of options. The user can tick any combination; the field stores their selections together.
Conditional options
- Options — please enter one option per line. The displayed labels are exactly what you type; the stored values are the same strings.
When to use it
For short, fixed lists where the options will rarely change. Examples: notification preferences (Email, SMS, Push), allergens (Gluten, Dairy, Nuts), service-level perks (Priority Support, Onboarding Call, Dedicated Manager).
When NOT to use it
If your options come from a datastore (so they can be edited by admins without code changes), pick Tickbox (Multiple) (DB) instead. If you need labels and values to differ, also pick a DB-backed type.