Tagged Questions
0
votes
1answer
29 views
jQuery Form with Paperclip
I am using jQuery Form and Paperclip to upload a file from browser to my Rails app.
Without jQuery form:
params = {...
"pic"=>#<ActionDispatch::Http::UploadedFile:0x007f9af9faf0f0
...}
With ...
0
votes
2answers
50 views
Multiple files upload in rails application [closed]
I am working on Ruby on Rails . And the current scenario which i need to implement is to upload multiple files in single shot. Can anybody explain how can i achieve this ? Is there any gems/plugin ...
0
votes
2answers
154 views
Multiple upload with Paperclip in ror
I am using paperclip to upload one photo for one building. http://www.youtube.com/watch?v=KGmsaXhIdjc i have done it with this way. But know I decide to upload many photos to one building. Can I do ...
1
vote
1answer
231 views
Rails+PaperClip+jQuery-File-Upload with nested models
I am using rails 3 with paperclip and jQuery-File-Upload and they are both great gems but they seems not to play well together, especially with nested models.
In my app,
I have two models: submission ...
0
votes
1answer
136 views
Trying to set up jQuery File Upload to show the picture that was just uploaded
I'm following Railscasts Episode #381 to set up jQuery File Upload to upload files to the server on Rails 3.
Right I have it fully functional using jQuery File Upload + Paperclip.
Works fine. But I ...
2
votes
1answer
265 views
Rails3 Paperclip JCrop got into the loop
I have a typical setting of this configuration, nothing special, something like in this tutorial: http://shareyourtechskills.blogspot.com/2011/01/jcrop-with-paper-clip-plugin.html
Upload avatar - ...
1
vote
1answer
527 views
Multiple File Uploads Error using JQuery-File-Upload and Paperclip
Following a tutorial on multiple file uploads in Rails using jQuery-File-Upload there seems to be a problem as soon as the attribute :multiple => true is added to the file_field e.g.
<%= ...
0
votes
2answers
236 views
Rails 3 use CKEditor with already existing paperclip model
I have a web application in rails 3 that already has a polymorphic paperclip model. I have attached several models to it already.
I soon realized I need a good wysiwyg editor for a text area, I ...
0
votes
0answers
241 views
ajax post request responds with an html element when including an attachment with paperclip
Newbie question, so please bare with me...
I have an application that allows users to submit stories via ajax, and then allows readers to comment on the stories with posts also submitted via ajax. ...
0
votes
1answer
794 views
Ajax file upload with paperclip
I'm using an ajax file upload script to upload a photo and using paperclip to process that photo in rails.
The script is
http://valums.com/ajax-upload/
the script has a the variable name 'qqfile' ...
2
votes
1answer
142 views
set images as avatar using radio buttons in paperclip
I am using paperclip gem in my web application to set avatar of user. It is working fine but for me the problem is we have to use following code
<%= f.file_field :avatar %>
So it gives ...
0
votes
0answers
158 views
cant jquery.prepend html with image_tag
I am using ajax on create action. It worked fine untill I have added image_tag to the block which I want to prepend.It adds only if i refresh page(I am using paperclip)
there is jquery code on create ...
0
votes
1answer
1k views
Rails 3.1 with jQuery-File-Upload and nested Paperclip
I'm using Rails 3.1 with Paperclip and looking for a way to implement jQuery-File-Upload.
I've a basic working setup by following the example:
blueimp jquery=file-upload
But when I introduced a ...
8
votes
2answers
6k views
Rails 3.1 + Paperclip + jQuery fileupload
I've been looking for a way to set up Ruby on Rails 3.1 with Paperclip and jQuery fileupload. Looking at a tutorial at jQuery fileupload page I got the system set up but I can't find a way to make ...
0
votes
1answer
859 views
Rails 3 WYSIWYG that supports image uploads?
Are there any gems/plugins for rails which would take all the hassle out of having a WYSIWYG editor which supports image uploads (ideally something that works with paperclip) ?
1
vote
2answers
256 views
gallery in rails
I'm having problems with implementing a gallery. It always shows me this error:
undefined method `geometry' for #
I read it and I know what it means...but I'm doing the iteration right:
<% ...
1
vote
1answer
542 views
rails and dynamic javascript?
Hey guys, I am trying to tie the recently popular jQuery File Uploader with Rails 3 (with a Paperclip back-end though that's not yet pertinent to this question).
This jQuery plugin basically allows ...
2
votes
1answer
925 views
paperclip error while reporcessing after rails 3 upgrade
I have paperclip working uploading and saving different styles for images but when i go to crop the image using jcrop from railscasts tutorial it doesnt crop image. I get this error
[paperclip] ...
0
votes
2answers
297 views
rails and uploadify nested_attributes
I have a form for a model which has many photos and it all works fine thru the form using the nested_attributes feature in the places model.
The form for is like this:
<% form_for @place, :html ...
1
vote
1answer
723 views
Paperclip with valums's file-uploader
I am using Paperclip to upload image on Rails3. Now I want to use valums's file-uploader to do multiple image upload. I have already set the multiple image upload correctly.
Each Product(a particular ...
0
votes
2answers
177 views
Automatically grouping images into albums
We're building a piece of forum software for a client. On posts, they want users to be able to upload images (we're using paperclip right now) to insert into the body of the post (similar to ...