Start typing to search...
Docs
Enabling customizations
Select
Search

Select (deprecated)

  • Users can make a selection from a predefined list of options.

  • The typeOptions must be defined for this VCC to work correctly.

selectVCC
Select VCC

Sample select VCC

{
  "key": "mySelect",
  "name": "My Select",
  "description": "This is my sample select",
  "type": "select",
  "typeOptions": {
    "placeholder": "Choose an option...",
    "options": [
      { "value": "one", "label": "Value one" },
      { "value": "two", "label": "Value two" },
      { "value": "three", "label": "Value three" }
    ]
  }
}