I have this in my model:

class Person < ActiveRecord::Base
  RELATIONSHIP_STATUSES = [
    "single",
    "in a relationship",
    "together",
    "it's complicated"
  ]

  validates :relationship_status, :inclusion => RELATIONSHIP_STATUSES
end

This in the view:

collection_select(:person, :relationship_status, Person::RELATIONSHIP_STATUSES, :to_s)

And I would like to translate that to simple_form. Is that possible?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

If I understood you right, it's simple(it's for formtastic):

<%= form.input :relationship_status, :as => :select, :collection => Person::RELATIONSHIP_STATUSES %>
link|improve this answer
You don't need the :as options if you want to use the select collection – rafaelfranca Jul 9 '11 at 19:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.