Is it possible to only present some values in an enumeration dependent on an app constant?

0
Does Mendix offer the ability to hide certain values of an enumeration dependent on a constant value?   My scenario is: I’m using a constant value to determine which version of an application a user will see.   As an example, I have an enumeration called ENU_PaymentMethod. The options available are - Cash Bank Transfer PayPal I only want to show Cash where constant Country = UK. So if the country is any different, it only shows Bank Transfer/PayPal. Is this possible?
asked
1 answers
1

You can use the Dynamic Enum Picker widget from the market place. Show the default Mendix drop-down for UK, because they need all the options. Show the Enum Picker widget if constant isn't UK and only add the two optional values in there.

answered