Adding values to Enumeration

0
Is it possible to add new values in Enumeration through UI?
asked
1 answers
3

It is not thus far - this is not the purpose of enumerations. What I would suggest is using an object in the database. Use an association and instead of "Selecting a dropdown" of enum values, those values will be dynamic and changeable at run time.

answered