I want users to be able to select and input (via checkbox/radio button/dropdown) multiple items from a single element. Their choices should come from an existing collection - not hand typed or from tags.
This is something I can easily do from a dropdown when only one item can be chosen from the dropdown. I understand how to feed the user’s choices from an existing table - just not how to use dropdown element to allow user to select more than one answer. With checkboxes, users can select multiple answers from a single interaction with an element but I can’t connect the list of choices to a collection. Can the best of these two features somehow be combined?
If not, what kind of input element can reference a collection to populate a list of choices and still allow the user to select more than one answer?
Thank you.