Can I use a (Xpath) constrained on an enumeration dropdown & search field?

5
I would like to limit the possibility of enumeration options in a dropdown field of a dataview. Similarly, I'd like to constrain the dropdown search field in a datagrid to a limited set of enumaration values of a particular enumeration. Can I use Xpath? If not, how should I solve this issue?
asked
2 answers
12

This is currently not possible. A workaround is to create a second attribute and enumeration that contains only those values you would like to show in the dropdown. Then, use microflows to synchronize the values of the two attributes, e.g., onChange of the enumeration dropdown.

answered
9

You could also choose to go for referenced objects that contain the values you would normaly put in the enumeration. It will then be possible to constraint the options you show to the user simply by stating [not(Objectname/AttributeName = 'ValueYouDoNotWantToBeShown']

answered