Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is a Rails 3 application with HAML. I have the following:

= f.fields_for :bar_memberships do |bar_membership_fields|
  = 'FIELD'

I have encapsulated the problem. This code prints: FIELD FIELD FIELD as expected.

But the following code:

= f.fields_for :bar_memberships do |bar_membership_fields|
  - if bar_membership_fields.object.new_record?
    = 'FIELD'

Shows a lot of hidden inputs, and shows them as strings in the HTML!

'<input id="person_bar_memberships_attributes_0_id" name="person[bar_memberships_attributes][0][id]" type="hidden" value="824" />
<input id="person_bar_memberships_attributes_1_id" name="person[bar_memberships_attributes][1][id]" type="hidden" value="825" />'
FIELD

Any idea?

share|improve this question

1 Answer

up vote 0 down vote accepted

I fixed the following code:

= f.fields_for :bar_memberships do |bar_membership_fields|
  - if bar_membership_fields.object.new_record?
    = 'FIELD'

By doing:

= f.fields_for :bar_memberships do |bar_membership_fields|
  = ""
  - if bar_membership_fields.object.new_record?
    = 'FIELD'

If anyone knows why please let me know.

share|improve this answer

Your Answer

 
discard

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

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