Rails - input type=”file” multiple

ruby-on-rails, ruby-on-rails-3

Solution

What you need is that more somenthing like this :

<%= f.file_field :attachment, :multiple => true %>

Problem

I'm still on the hunt for an elegant multi-file upload for Rails. I just learned about the "input type=”file” multiple" Does Rails support this? Any examples? tips on how to implement for uploading multiple photos to a photoalbum model in Rails? Thanks

Original source