Select Field Componentt

Select Field

Propertiest

The Select Field has the same properties as the Field component, with the addition of:

  • Options
  • Dynamic Options

Options Propertyt

PropertyTypeDescription
NametextName of the option displayed on the select field
ValuetextValue of the option

Dynamic Propertyt

Used when you need to create the option based on other variables available on the page. This property accepts a JavaScript code that should return a list with the following structure:

return [
    {
        "name": "OPTION_NAME",
        "value": "OPTION_VALUE"
    }
]