Display Drop-down based on condition in microflow

1
Hi, I have one drop-down named 'make' and I want to display this drop-down based on another drop-down and one string condition. I am using microflow to display Drop-down based on these two conditions. First I have taken one decision, in that decision I have checked whether two conditions are satisfied or not and if it is true then I used change object activity and refresh in client. But drop-down is not displaying.
asked
2 answers
0

If you want to show or hide an attribute in the form then you must use conditional visibility.

If you want to add more conditions, then write your conditions by using Based on expression option. Here you can use multiple conditions. 

https://docs.mendix.com/studio/page-editor-widgets-visibility-section#condition

answered
0

For document template:

- You can have a Data view and it can retrieve object based on microflow as well: the logic to retrieve the object I will leave it up to you

- You can have an NPE or extend the existing Persistable entity which additional booelans attributes to determine the conditional visibility for a row

- Based on your conditions, set that boolean to true or false

- For document template you can show or hide a row based on condition: for which you must right on the cell or row, then you will see an option like below

- Select the attribute based on which you want to show or hide the row and select appropriate value

answered