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

I have a haml like ;

= form_for @company, :html => {:multipart => true}, :url => update_user_company_path do |f|
            .field
              Title:#{f.text_field :name}
            = f.fields_for :attachments do |builder|
              - if builder.object.new_record?
                .field
                  = builder.hidden_field :name, :value => 'logo'
                  = builder.file_field :file
              - elsif builder.object.name.eql?('logo') && !builder.object.file.url.eql?('/files/original/missing.png')
                .field
                  %span.thumbnail
                    = link_to "Delete", delete_company_attachment_path(@company, builder.object), :method => :delete, :class => "remove_image"
                    = image_tag builder.object.file.url, :style => "height:86px;width:125px"
            = f.submit 'Ok'

Chrome renders this code like it has to be.Bu in firefox it is like;

<form method="post" id="edit_company_29" enctype="multipart/form-data" class="edit_company" action="/users/25/company" accept-charset="UTF-8"><div style="margin:0;padding:0;display:inline"><input type="hidden" value="✓" name="utf8"><input type="hidden" value="put" name="_method"><input type="hidden" value="thisismytokenvalue=" name="authenticity_token"></div>
                <div class="field">
                  Title:<input type="text" value="sdgdfgghjh" size="30" name="company[name]" id="company_name">
                </div>
                &lt;input id="company_attachments_attributes_0_id" name="company[attachments_attributes][0][id]" type="hidden" value="114" /&gt;&lt;input id="company_attachments_attributes_1_id" name="company[attachments_attributes][1][id]" type="hidden" value="115" /&gt;<div class="field">
                  <input type="hidden" value="logo" name="company[attachments_attributes][2][name]" id="company_attachments_attributes_2_name">
                  <input type="file" name="company[attachments_attributes][2][file]" id="company_attachments_attributes_2_file">
                </div>
                <input type="submit" value="Ok" name="commit">
        </form>

Quoted elements? Really? If you check haml, you can see i didnt put them. 1)Where did they come from? 2)Why quoted?

Any answer would be very helpful. Thanks.

share|improve this question
Is it possible you have something that overrides the formbuilder and it isn't returning .html_safe strings? – Unixmonkey May 8 '12 at 12:11
Actually i dont think so. because my first view in in .erb format. Then i use html2haml.heroku.com to convert my .erb to .haml. – Çağdaş May 8 '12 at 12:33

1 Answer

Wow ... I've just had a similar issue. My guess is that if you pass nil to the form_builder's fields_for the hidden_input isn't returned with html_safe. To quickly fix that add a

-else
  =""

after the whole elsif block

share|improve this answer
Thanks! This helped me out of a pickle. – Dylan Sep 21 '12 at 17:40

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.