Multiple values consolidated to a list of values that can be selected from

0
Hello,   I am trying to have a use value of an enumerations to basically create another enumerations list for example.   Color 1 (enumeration) = Red , Blue, White , Green  (user selects Green) Color 2 (enumeration) = Red, Blue, White, Green (user selects Blue)   New Enumeration would  Color List = (Color 1) and (Color 2) it this case would now be only Green and Blue in the list.    So i am looking to make a value selected into a new list to use later on a different page. 
asked
3 answers
2

Andrew,

You could create an entity to hold the selected enumeration values.  For instance, create an entity called ColorSelections with on attribute of type enumeration (which uses the color enumeration).  You can then create a new object in this entity for each selected value and use those objects later on.

Alternatively, if you want to use these colors, you could access them via XPath retrieval if the entity they are on is accessible from the page you want to access them from.

Mike

answered
2

answered
1

This app might also solve your problem: https://appstore.home.mendix.com/link/app/56183/Finaps/EnumSelector

Regards,

Ronald

answered