0
votes
1answer
30 views

Jquery file upload in rails on button click

I am using jquery-fileupload plugin (https://github.com/tors/jquery-fileupload-rails) for showing file upload progress in my rails app. The following code below works fine. In my index.html.erb i ...
0
votes
1answer
41 views

unable to see the attributes in has_many images after multiple file uploads

I have a has_many images association where i try to upload multiple images in a form but i am unable to see the associated attributes when i click the submit button.Its a simple association of bug ...
1
vote
0answers
184 views

jQuery Fileupload iframe transport ie8 sending wrong request

I have a fileuploader modeled after Ryan Bates railscast that works perfectly in any browser that supports XHR requests but I'm having trouble figuring out why IE8 is not making the correct request to ...
0
votes
0answers
50 views

Rails Jquery upload file using remotipart gem NoMethodError: undefined method `name'

I am using gem remotipart for uploading file. Here is my view: <%= form_for @file_upload, :id => "form_feedback_attachment", :url => { :controller => "widgets", :action => ...
1
vote
0answers
282 views

Rails 3 + JQuery-File-Upload + Multiple Files

I am currently using Carrierwave to allow my users to upload (1) file per event created. I would like to expand the options and offer my customers to availability to add multiple images per event. I ...
0
votes
0answers
156 views

get response data using jquery-fileupload-rails gem

I'm using jquery-fileupload-rails gem to upload multiple files and after file has been uploaded I'm trying to display some data on the view page. Here's my Jquery code ...
1
vote
1answer
393 views

Progress bar don't remove after file upload, jquery file upload

I'm using jquery-fileupload-rails Gem for uploading the Image in my application. Here is the code: <script id="template-upload" type="text/x-tmpl"> <div class="upload "> {%=o.name%} ...
1
vote
0answers
458 views

Blueimp file upload issues

when i run my app, fileupload function shows error Uncaught TypeError: Object [object Object] has no method 'fileupload' $(document).ready(function(){ $('#datepicker').datepicker(); ...
0
votes
0answers
122 views

Rails server-side setup for chunked file uploads with jQuery-File-Upload

I am using jQuery-File-Upload for upload files in a Rails application. I am using the option of chunked file uploads, my client-side setup work good, but I not know how develop my server-side setup. ...
0
votes
1answer
155 views

How do I upload multiple images to 1 record directly to s3?

I have a Product model and for each record created, I want multiple images associated with that record (say 3 - 10). Each image should have multiple sizes (say 3 different sizes). I checked out ...
4
votes
1answer
1k views

Rails 3 - nested model - has_many - jquery file upload

I have a Post model which has_many :photos. While User creating a new post, user should be also able to select photos for given post. I am using RAILS 3.2.9, nested_form, carrierwave and ...