Search code examples
ruby-on-railsrubyruby-on-rails-pluginsruby-on-rails-3

Linked tables using Rails Admin?


I'm using Rails Admin to make editing my data a little easier. Here's my question:

Lets say I have a table: "Shirts"

and I have a second table: "Colors"

I've linked the tables (Shirts has_many :colors) - now in Rails Admin, when editing shirts, I'd like a drop down menu to appear for the shirt's color field, gathering available options from the Colors table. Does anyone know if this possible and how I might go about doing it?

Thanks!


Solution

  • Nevermind, I am an idiot - this is clearly done automatically.