How to select Boolean value in a dropdown?

0
I want to change boolean attribute using a dropdown with 2 options (yes/no). How can I implement it (bool attribute by default works only with a checkbox and radio button widgets)?
asked
1 answers
2

Indeed, for boolean attributes you can only use checkbox or radio buttons. If you want a drop down, you can use an enumeration instead. Or if you want to specifically use a boolean then you can take user inputs using enumeration and set your boolean in the microflow,

answered