The Select Field has the same properties as the Field component, with the addition of:
Property | Type | Description |
---|---|---|
Name | text | Name of the option displayed on the select field |
Value | text | Value of the option |
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"
}
]