Dependent DropDown

0
Hello,   Here, I am getting countries list in Country drop down. I want to see the list of states in states drop down for the selected country. I added an “on change” microflow to the country, in that microflow I tried to change the object “MainObject” with list of states but its not possible.  How can I achieve this. Associations: MainObject – Country/State/Dt  ( 1-1 ) Country – State   ( 1-* )  
asked
2 answers
3

Another option would be to specify a condition in the selectable objects tab in your reference selector. However, you might need to refresh your object on change, such that the conditions are applied again.

answered
0

In your domain model have an entity country and another state with a reference of 1-*
 

Then when you select your country only the related states would show. 

answered