A dropdown lets a submitter pick from a controlled list of values. The list comes from a picklist you point the field at with
picklist_id. The field stores the option code; the picklist owns the options themselves.When to use it
Use a dropdown when the valid values are a bounded, governed vocabulary that you want to control centrally:- Channels, mediums, regions, product lines, business units.
- Any value you want consistent across every record so reports group cleanly.
- Selections that should narrow based on an earlier choice (a cascade).
Static
A hand-authored list. Flat or hierarchical.
Hierarchical
Parent-to-child options for cascading dropdowns.
Automated
Options derived live from another taxonomy’s records.
Settings reference
You set these on the field.picklist_id is required; everything else is optional.
| Setting | Default | What it does |
|---|---|---|
picklist_id | required | The picklist that supplies this dropdown’s options. |
picklist_rules | none | Conditional rules that swap in a different picklist based on other field values. First match wins; falls back to picklist_id. See Conditional picklists. |
multiple | false | Allow more than one selection. Only for static, flat picklists. |
min_choices | none | Smallest number of selections allowed (only when multiple is on). |
max_choices | none | Largest number of selections allowed (only when multiple is on). |
separator | , | Character that joins multiple selections in the stored value (only when multiple is on). |
default_value | none | An option code to preselect, or an array of codes when multiple is on. |
depends_on | none | Makes this a cascading child of another dropdown. See Cascading dropdowns. |
required toggle lives on the field itself, not in these settings. Whether submitters can add values that aren’t in the list is a property of the picklist (allow_additions), not the field. See Letting submitters add options.
Single vs. multiple
By default a dropdown takes one value. Turn onmultiple to let submitters pick several. When multiple is on:
min_choicesandmax_choicesbound how many they may select. Leave either blank for no bound.- The selected codes are joined with
separator(a comma by default) when the value is stored. default_valuebecomes a list of codes rather than a single code.
depends_on.
Conditional picklists
Sometimes the right list of options depends on what was entered elsewhere. Add one or more picklist rules to the field: each rule says “when this condition holds, use this picklist instead.” Terminus Hub evaluates the rules top to bottom and uses the first one that matches. If none match, it falls back to the field’s defaultpicklist_id.
For example, a sub_channel dropdown could show a “Paid sub-channels” list when channel is paid, and a “Organic sub-channels” list otherwise. You build these in the field’s settings under Picklist Rules; reorder them to control precedence.
Example
In the Campaign URL Builder,utm_medium is a single-select dropdown over a static picklist of mediums (email, social, cpc):
audiences dropdown that requires one to three picks looks like this:
prospects and existing, the record stores prospects,existing.
Gotchas
- The dropdown stores the code, not the label. Reports and links use the option code. Keep codes stable; rename an option’s display label freely, but changing a code leaves existing records pointing at the old value.
- Multi-select is narrow.
multipleis rejected on hierarchical picklists, automated picklists, and any field that usesdepends_on. - Conditional rules and cascades both filter. If a field has both
picklist_rulesanddepends_on, both narrow the options at once, so an over-tight combination can leave a submitter with nothing to choose. - Adding new values is a picklist setting. A dropdown can only accept submitter-proposed values when its picklist has
allow_additionsturned on. See Letting submitters add options.