Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to use formtastic to render a nested form. I have has_many/accepts_nested_attributes_for setup in my parent model. Everything is working great. The only issue is that I want to sort the order of the nested model.

# this works but i want answers sorted a certain way
= semantic_form_for survey do |f|
  = f.inputs :for => :answers do |answer_form|
    = answer_form.input :content

If I try doing something like:

# form styles become extremely messed up but the order is correct
= semantic_form_for survey, do |f|
  = f.semantic_fields_for :answers, f.object.answers.joins(:question).order('questions.position') do |answer_form|
    = answer_form.input :content

I've even tried creating a 'fake' has_many relationship called :sorted_answers using :finder_sql and :class but that doesn't work either (answer_form is nil IIRC).

I guess what I'm asking is if I can use :for => (relationship) but specify the ordering of the relationship. Maybe using :for_options?

share|improve this question

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.