How can I create a list with items from which one can choose one or more ?

0
I want to have a list with locations and the user should choose wich of these locations he wants: location A    Yes/No location B.   Yes/No location C    Yes/No  ... The result should then stand in an other list:           “locations with Yes”: 1. , 3. , 5. ,6. …   Which tool is helpful ?
asked
3 answers
2

This widget might be helpful

https://marketplace.mendix.com/link/component/121

answered
1

Hi, If you want to choose a value from set of predefined vale please use enum as atribute type. Then you can use a drop down while selecting the value. Hope this will help

answered
1

If you are storing these locations as object then using refrence set selector is best option. Or you can have a yes /no button for every location and onclick you can used a microflow which will attach the respctibe object with location. Then you can retrieve the list of location whenever required using the object through association.

answered