Skip to content

Form Field: Select Dropdown

Type: select

Standard dropdown component.

javascript
{
  id: 'country',
  type: 'select',
  label: 'Country',
  options: ['USA', 'Canada', { label: 'Other', value: 'world' }],
  required: true,
  defaultValue: ''
}
PropertyTypeDescription
optionsArray<string | {label, value}>List of available choices.
defaultValuestringThe value of the option selected by default.