I'm trying upload multiple files to an event. Everything works except for the view. There are no fields showing for choosing files.

<%= form_for @event, :html => {:multipart => true} do |f| %>
    <% if @event.errors.any? %>
        <div id="error_explanation">
          <h2><%= pluralize(@event.errors.count, "error") %> prohibited this event from being saved:</h2>

          <ul>
            <% @event.errors.full_messages.each do |msg| %>
                <li><%= msg %></li>
            <% end %>
          </ul>
        </div>
    <% end %>
    <div class="field">
      <%= f.label :title %>
      <br/>
      <%= f.text_field :title %>
    </div>
    <div class="field">
      <%= f.label :description %>
      <br/>
      <%= f.text_area :description %>
    </div>
    <div class="field">
      <%= f.label :event_date %>
      <br/>
      <%= f.date_select :event_date %>
    </div>
    <div class="field">
      <% f.fields_for :event_images do |builder| %>
          <% if builder.object.new_record? %>
              <p>
              <%= builder.label :caption, "Image Caption" %>
              <%= builder.text_field :caption %>
              </p>
              <p>
                <%= builder.label :photo, "Image File" %>
                <%= builder.file_field :photo %>
              </p>
          <% end %>
      <% end %>
    </div>
    <div class="actions">
      <%= f.submit %>
    </div>
<% end %>

event.rb

class Event < ActiveRecord::Base

    has_many :event_images, :dependent => :destroy
  accepts_nested_attributes_for :event_images, :reject_if => lambda { |t| t['event_image'].nil? }

end

event_image.rb

class EventImage < ActiveRecord::Base

  belongs_to :event
  has_attached_file :photo, :styles => {:small => "150x150>", :large => "320x240>"}
  validates_attachment_presence :photo
  validates_attachment_size :photo, :less_than => 5.megabytes,
                            :if => Proc.new { |imports| !imports.photo_file_name.blank? }

end
link|improve this question

78% accept rate
feedback

2 Answers

You may want to checkout this guy's example application for Rails 3.

link|improve this answer
feedback

You need build this objects, for example, paste this line of code in the beginning of your view:

<% 5.times {@event.event_images.build} %>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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