How to add and remove values from an Enumeration via JavaScript
We are building a process that will ingest a file of values from a source. Our intent is to use this data to produce a drop down list in a form for some data entry. This is accomplished via an Enumeration set as the dbEnum value that drives rendering.
As values may be added and removed from the source, we need to be able to do the same with this Enumeration. Decisions on whether to use a truncate and reload vs an incremental load strategy are TBD, but we need to understand the options. Is there a way to add/remove/clear an Enumeration's data via JavaScript?

