- Description:
This key defines how CloudCannon should render selectable options in the dropdown of a Select Input.
- Appears in:
└── _inputs └── * ├── Select Input │ └── options │ └── picker_view ├── Multiselect Input │ └── options │ └── picker_view ├── Choice Input │ └── options │ └── picker_view └── Multichoice Input └── options └── picker_view- Type:
string- Allowed values:
cardtextgallerygallery-left- Examples:
In this example, we have configured a Select Input to display options using the card view.
Copied to clipboard_inputs: category: type: select options: values: - Blog - News - Events picker_view: card{ "_inputs": { "category": { "type": "select", "options": { "values": [ "Blog", "News", "Events" ], "picker_view": "card" } } } }