Show enumeration value of an an attribute by association

0
Hello!   On my domain model I have a quarter entity of type enumeration, I'm trying to show the values inside a drop down or a reference selector to be able to choose one quarter as I'm able to choose the month and the year but nothing is displayed as you can see :  
asked
1 answers
0

In your dropdown you are looking for objects of entity type Quarter. Not selecting a value of the enumeration type Quarter.

 

Either

  • add the enumeration as attribute to the entity, or
  • create the Quarter objects (manually) and fill them with the correct quarter. After that, you can select them in the dropdown.

 

Hope this helps!

answered