Import from CSV File to create enumeration?

0
Hi,   Currently trying to create an enumeration with around 60-70 possible selections, which would therefor take quite a while to input manually. Is there any way to import a CSV file with the values to create the  enumeration?   Any help much appreciated :) -Matthew.
asked
3 answers
1

New values for enumerations can’t be created in Mendix on the fly. They have to be added before the application is compiled and running.

If you want to add something automatically you’d need to look at using the Mendix SDK to create them. but that is quite a time consuming option.

https://docs.mendix.com/apidocs-mxsdk/mxsdk/

Good luck

answered
0

Thanks, 

would you happen to have steps required to import data and make an enumeration based off the data so I 

do it the correct way? Is there a link or list of steps in order to successfully do this so I know for next time?

answered
0

Not entirely clear on that to be honest. Is that if your looking to fill the enum option within the object? I am looking at actually importing from a file options to have as part of the enum. Hope this makes sense.

answered