File Upload widget with multiple file selection, drag&drop; support, progress bar and preview images for jQuery.
1
vote
0answers
23 views
Rails wrap_parameter not working as expected
I'm working with AngularJS and the jQuery-file-uploader plugin. I've configured rails to wrap my parameters with
ActiveSupport.on_load(:action_controller) do
wrap_parameters format: [:json]
end
...
1
vote
0answers
41 views
How to get id of created image in rails
I have a Recipe model and RecipePhoto model. I want to show the thumbnail of scaled image on creating a new recipe. I upload photo through jquery-file-upload. The problem is that i don't know how to ...
1
vote
0answers
118 views
Display progress bar until picture uploaded, then replace div with picture - Jquery File Upload
I followed the Railscast by Ryan Bates (http://railscasts.com/episodes/381-jquery-file-upload?view=comments) to add multiple file upload with the Jquery File Upload gem and everything works great, but ...
0
votes
0answers
7 views
Jquer.Form.Js AJAX file upload issue in IE8 only
I am using Jquery.Form.Js plugin for ajax file upload. It is working fine in all browers and versions except IE8. When i upload in IE 8, the file gets uploaded but browser hangs on response. Suddenly, ...
0
votes
0answers
14 views
Carrierwave Jquery-File Upload Creates Extra Blank Image
I'm using Carrierwave and implemented Jquery-file upload for multiple uploads (jquery-file-upload gem).
Now whenever I upload images, even when it's just one it goes through but also sends an extra ...
0
votes
0answers
41 views
AngluarJS jQuery file upload modal errors
I am working on implementing the AngularJS code of the jquery file upload plugin found: http://blueimp.github.io/jQuery-File-Upload/ within a $dialog box using the $dialog bootstrap directive found: ...
0
votes
0answers
29 views
how to totally remove any kind of Thumbnails using Jquery FileUpload library?
I'm using JQuery FileUpload to upload files on my server.
I need to remove any kind of thumbnails in the html area of upload, but even if i configured the javascript and php to avoid thumbnails, i ...
0
votes
0answers
64 views
jquery file upload Error Not Found
I am using jquery file upload with the Codeignitor . I copied the working code and place it in Codeignitor . When i try to upload the file i keep getting this meessage
Error Not Found
I check on ...
0
votes
0answers
20 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
0answers
158 views
Show image file before upload with jQuery
I know this should be extremely simple but I just don't know the api's yet. I have button that when clicked clicks a hidden file input. After a file is chosen the on change method is fired. When the ...
0
votes
0answers
55 views
Retrieve jqXHR in jquery file upload plugin's fileuploadsend event?
I'm using drag-drop to trigger my upload, so I'm not able to simply capture the return from findupload('send') to get the jqXHR.
So in the 'fileuploadsend' event I'm trying to grab the jqXHR element ...
0
votes
0answers
50 views
jQuery-fileupload-rails with polymorphic model and nested resource
I'm trying to implement an uploader to Amazon s3 using CarrierWave with a jQuery FileUpload. I've been following Railscasts Episodes #253 and #381. I am able to upload to Amazon S3 using CarrierWave ...
0
votes
0answers
184 views
BlueImp JQuery File Upload - Send file on form post
HAML with local javascript:
%form#uploadForm{:action => "/", :enctype =>'multipart/form-data', :method => "post"}
.row
.btn-group.btn-group-vertical
...
0
votes
0answers
11 views
“Re-create” a UI pre-filled with previously uploaded files
I'm able to send picture with jquery-file-upload, everything is ok.
But i would like to "re-create" the UI with uploaded pictures and give the possibilities to delete them ; later on another page.
To ...
0
votes
0answers
54 views
Unload jquery file upload when using async
So I'm using the jquery file uploader with bootstrap skin. Works fine, had some troubles, but now it works (lack of knowledge, so all me).
I'm loading it async. So on page load I just call what I ...