I have this in my form:

= f.input :location_id, :collection => @locations, :include_blank => false, :selected => @video.location

This works fine for my "new" view/action and I see a nice list of locations to choose from.

However when in my edit view, instead of seeing the list of locations, I just see an input field as if it is a string, like so:

Location: 4ebbc0f8e0ed180e91000002

Any ideas why I don't see my collection?

EDIT:

Figured it out, I had to do:

= f.input :location_id, :collection => @locations, :include_blank => false, :selected => @video.location.id

Also, I forgot to pass @locations in my edit controller, woops :)

link|improve this question
it's better to answer yourself directly instead of edit your question. – shingara Apr 6 at 14:30
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.