Dropdown multiselect form not working?

I am trying to build a dropdown multiselect for my next page form but it keeps showing my checkboxes instead.
I tried with sample data Using JSON:
[
{
“fieldLabel”: “Dropdown Options”,
“fieldType”: “dropdown”,
“fieldOptions”: {
“values”: [
{
“option”: “option 1”
},
{
“option”: “option 2”
}
]
},
“multiselect”: true
}
]

Information on your n8n setup

  • **n8n version:**Version 2.0.1
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app): n8n cloud
  • Operating system: windows
1 Like

As soon as you choose “multiselect” it always shows checkboxes. The standard form node does not support drop-down multiselects as you may imagine them.

Youcan however connect a more advanced form service like typeform to n8n.

6 Likes

Than you !!

1 Like