A custom select element that just works.
---import { Select } from 'studiocms:ui/components';---
<Select label='Select Element' options={[ { label: 'Option 1', value: 'opt-1' }, { label: 'Option 2', value: 'opt-2' }, { label: 'Option 3', value: 'opt-3' }, ]}/>
You can set a default value using the defaultValue
prop:
---import { Select } from 'studiocms:ui/components';---
<Select label='Select Element' defaultValue='opt-1' options={[ { label: 'Option 1', value: 'opt-1' }, { label: 'Option 2', value: 'opt-2' }, { label: 'Option 3', value: 'opt-3' }, ]}/>
You can use the isRequired
prop to mark the select input as required. This will also add a red *
to
the label.
If you need to access the element’s value later on, you can pass the name
prop. It will then appear in any FormData
you construct. If no name is set, a random one is generated for the component.
Additionally, you can either disable the entire select input by using the disabled
prop, or disable
individual options by adding disabled: true
to the option you want to disable:
---import { Select } from 'studiocms:ui/components';---
<Select label='Select Element' defaultValue='opt-1' isRequired disabled name='select-element' options={[ // ... { label: 'Option X', value: 'opt-x', disabled: true }, // ... ]}/>
Normally, the input has a minimum width and extends as needed. You can force it to take up
the entire width of its parent container by setting the fullWidth
prop to true:
---import { Select } from 'studiocms:ui/components';---
<Select label='Select Element' fullWidth options={[ { label: 'Option 1', value: 'opt-1' }, { label: 'Option 2', value: 'opt-2' }, { label: 'Option 3', value: 'opt-3' }, ]}/>
You can adjust the placeholder shown in the select by passing the placeholder
prop:
---import { Select } from 'studiocms:ui/components';---
<Select label='Select Element' placeholder='Custom Placeholder' options={[ { label: 'Option 1', value: 'opt-1' }, { label: 'Option 2', value: 'opt-2' }, { label: 'Option 3', value: 'opt-3' }, ]}/>
You can select multiple options by setting the multiple
prop to true
:
---import { Select } from 'studiocms:ui/components';---
<Select label='Select Element' multiple defaultValue={[ 'opt-1-mult1', 'opt-2-mult1', 'opt-3-mult1', ]} options={[ { label: "Option 1", value: "opt-1-mult1" }, { label: "Option 2", value: "opt-2-mult1" }, { label: "Option 3", value: "opt-3-mult1" }, { label: "Option 4", value: "opt-4-mult1" }, { label: "Option 5", value: "opt-5-mult1" }, { label: "Option 6", value: "opt-6-mult1" }, { label: "Option 7", value: "opt-7-mult1" }, { label: "Option 8", value: "opt-8-mult1" }, { label: "Option 9", value: "opt-9-mult1" }, { label: "Option 10", value: "opt-10-mult1" }, { label: "Option 11", value: "opt-11-mult1" }, { label: "Option 12", value: "opt-12-mult1" }, ]}/>
You can set a maximum number of options that can be selected using the max
prop:
---import { Select } from 'studiocms:ui/components';---
<Select label='Select Element' multiple max={3} options={[ { label: "Option 1", value: "opt-1-mult2" }, { label: "Option 2", value: "opt-2-mult2" }, { label: "Option 3", value: "opt-3-mult2" }, { label: "Option 4", value: "opt-4-mult2" }, { label: "Option 5", value: "opt-5-mult2" }, ]}/>