0

Is it possible to have a "select" parameter with pre-defined options, that also accepts random manual input by the user? So the user can enter "air" into the example below.

 {
  "name":"a",
  "label":"A",
  "type":"select",
  "options": [
    {
      "value": "apple"
    }
  ]
}

1 Answers1

1

You can disable validation of the value using "validate": false like in the example below. Then it is possible to switch the select field to the mapping mode and enter an arbitrary value.

{
  "name":"a",
  "label":"A",
  "type":"select",
  "validate": false,
  "options": [
    {
      "value": "apple"
    }
  ]
}

More info here: https://docs.integromat.com/apps/other/parameters/select#validate

Petr Malimánek
  • 336
  • 1
  • 8