Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to use https://github.com/blueimp/jQuery-File-Upload/wiki/Rails-setup-for-V5 in my new rails project. I want to make objects called assignments that have multiple files attached to them.

How do I make a form for an assignment that has a nest form for the files being uploaded?

share|improve this question
1  
Nested forms are illegal in HTML4 and HTML5 and generally cause problems... – Andrew Whitaker Jan 4 '12 at 0:52
3  
He doesnt mean nested forms literally, but in the rails way, when you work with several models. – Robin Jan 4 '12 at 0:55
Did you ever find a solution for this? – Wilhelm Feb 28 '12 at 17:34
I ended up coding something up. I'll try to post it on Github soon. – Cyrus Feb 29 '12 at 1:50
I would appreciate if you share your solution. Thanks. – Engin Erdogan Apr 2 '12 at 13:48
show 3 more comments

2 Answers

This plugin change input[type=file] info form and when it's inside other form it's invalid. I solved this: the outer form I changed to <div id="form">. I submit form via jQuery with

$.post(url, $('#form *').serialize(), function(response){...}, 'json')

Of course you have to manage uploads somehow on server-side before submitting form.

share|improve this answer

The way I did this is to add a separate form outside of my main form just for uploading files:

= s3_uploader_form post: void_url, as: "photo_url", id: "photo_upload" do
  = file_field_tag "file", multiple: true

= form_for @model do |f|
  ...
  = f.fields_for :children do |child_fields|
    = file_field_tag :"#{child_id}_file", multiple: true

Then I hook part of the fileupload plugin to both forms, like so:

$("#photo_upload").fileupload
  add: (e, data) ->
    data.submit()

  done: (e, data) ->
    file = data.files[0]

// For each child
$("##{child_id}_file").fileupload
  dropzone: $("##{child_id}_dropzone")
  add: (e, data) ->
    # Upload the file using the external upload form with the proper form action and fields
    $rootPhotoUploadForm.fileupload('add', { files: [file], child_id: child_id })

Basically, I use jQuery-File-Upload's API to upload the file from an external upload form.

Note that I include the child_id when triggering the 'add' on the external upload form so that I know which child has triggered a file upload. That value is available in the data variable in each callback.

I have abstracted a lot as there's a lot of application specific code, hopefully you can figure it out from there.

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.