Add items to enumeration via microflow

3
Can I add items to an enumeration using microflows? I have a form in which to choose an enum-item, and a checkbox which de-activates the enum dropdown and activates an 'Else...' text field. I would like to add the input from that text field to the pre-existing enumeration, so that it can be chosen from the drop down menu the next time a user uses it.
asked
1 answers
2

Enumerations are fixed sets of elements. The behavior you are looking for can be achieved, but not with enumerations. Domain objects should be used for this.

answered