Can't use select machine with multiple in form #1301
-
Hi When using select machine with Is there something I'm missing here ? or is this a bug ? Here's a codesandbox Note : I've also tried to use ArkUI to achieve this but I'm getting the same issue. Thank you ! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
This is normal behavior from the native So if you do something like this (basic example): <form>
<select multiple>
<option value="parrot">Parrot</option>
<option value="macaw">Macaw</option>
<option value="albatross">Albatross</option>
</select>
<button type="submit">Submit</button>
</form> You will still only see a blank query in the url. Not sure if this is within the scope of the machine, and rather in the scope of how the form is created and controlled. I would think that it would depend on the user in how they want to format the query with multiple options. If I recall correctly, these machines are meant to be built on top of native functionality to meet accessibility guidelines and flexibility in design, and not to do anything more with handling data outside of ensuring that machines function. |
Beta Was this translation helpful? Give feedback.
This was indeed a bug. I just pushed a fix for this