Rails. Simple form multipart file not working

13,133

You should use html option instead of input_html:

<%= simple_form_for @building, html: {multipart: true} do |f| %>

Share:
13,133
user1309082
Author by

user1309082

Updated on June 19, 2022

Comments

  • user1309082
    user1309082 almost 2 years

    I use simple_form and multipart uploading does not work(uploading a single file works). Rails file_field_tag work...
    Rails 3.2.13

    <%= simple_form_for @building, input_html: {multipart: true} do |f| %>
    ...
    
      <%= f.simple_fields_for :paintings do |p| %>
        <%= p.input :image, as: :file %>
      <% end %>
    
    <% end %>