How to get enum value ?

Options
Hi, i would like to get all my enum value to put it in dropdown.

Some advices to do that ? 

It's better to hard code it ? Or separate it in new table ?

Thanks

Comments

  • Ray Deck
    Ray Deck Trusted Xano Expert ✭✭✭
    Options
    Things that small, change infrequently and are global are relatively safe to keep local in the code rather than storing in a database, and that can both improve performance and make your life easier. Your enums sound like a good example of that.