- "inputType": "multiple-dropdown-input"
- Description: Using the multi-level drop-down input field, the user can add multiple instances of the same drop-down field and thus pick multiple values for their order. The specific attributes are:
maxValue
to define the maximum number of values that can be pickedelements
: to add anonymous JSON elements representing the drop-down options (each element must contain a name and a value)
- Example:
"multiple_dropdown_input": {
"title": "Multiple Dropdown Input",
"inputType": "multiple-dropdown-input",
"value": [
{
"name": "Shown Value"
},
{
"name": "Shown Value 2"
},
],
"elements": [
{
"name": "Shown Value"
},
{
"name": "Shown Value 2"
},
{
"name": "Shown Value 3"
}
],
"maxValue": 2
}