How to hide/show some text field onchange of a drop down.

0
I have a drop down having different options. Now based on option selection I want to hide or show bellow text fields. How it could be possible in mendix??? If I have to call a microflow onchange of dropdown then what exactly I have to do there???
asked
1 answers
1

If it's an enumeration you can set the visibilty based on the enumeration value.

 

Or you could use the onchange microflow and set visibilty to true or false of your text fields based on your selection.

answered