Drop Down Interface (not available)

Utilizing version 11.11.0, I have a few text columns that I would like to fill from a drop down when adding a updating a record. These are text fields in a postgres database and directus reads them accordingly, however I cannot see a way to create a drop down under the “interface” setup within the UI. “Input” is currently being utilized for each of these text columns.

Is there a way to accomplish this without creating multiple child tables and linking them in a M2O interface?

Hi Jeff, welcome to the community! :waving_hand:

This seems like a solid use case for the auto-complete input interface. It’s basically a search input that dynamically populates dropdown choices by making a fetch request to a given URL.

Here’s how you could approach this:

  1. Use the auto-complete interface instead of creating formal relationships
  2. Configure it to call the Directus API for the collection you want to search
  3. Populate just the text value rather than creating actual relational data

This gives you the searchable dropdown behavior you’re looking for without the overhead of managing relationships between collections.

You might also check out the extension marketplace as well to see if anyone else has already built a solution for this.

Hope that helps!