Comments on: In-place file upload with Ruby on Rails https://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/ In my blog I'll try to describe about interesting technologies, my discovery in IT and some useful things about programming. Tue, 08 Sep 2015 00:34:05 +0000 hourly 1 https://wordpress.org/?v=6.7.1 By: exip https://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/comment-page-1/#comment-253217 Fri, 21 Nov 2008 16:31:33 +0000 http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/#comment-253217 Есть плугин для jQuery, который использует похожую технику.

]]>
By: Ajax File or Image Uploading inside Ruby on Rails « Ruby on Rails Notes https://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/comment-page-1/#comment-241806 Tue, 30 Sep 2008 22:25:36 +0000 http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/#comment-241806 […] http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/ […]

]]>
By: valen https://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/comment-page-1/#comment-230046 Wed, 13 Aug 2008 19:13:27 +0000 http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/#comment-230046 Вот здесь
http://www.rubyf.info/blog/show/3

подробно рассмотрена данная тема с примерами.

]]>
By: Double Shot #203 | Developer Home https://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/comment-page-1/#comment-207135 Fri, 23 May 2008 18:32:01 +0000 http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/#comment-207135 […] In-place file upload with Ruby on Rails – The GMail technique for asynchronous uploads. […]

]]>
By: A Fresh Cup » Blog Archive » Double Shot #203 https://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/comment-page-1/#comment-202193 Thu, 08 May 2008 11:35:02 +0000 http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/#comment-202193 […] In-place file upload with Ruby on Rails – The GMail technique for asynchronous uploads. […]

]]>
By: Venkat https://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/comment-page-1/#comment-148292 Tue, 05 Feb 2008 14:45:33 +0000 http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/#comment-148292 Hi I have tried this in my app. In my app, I have a partial to display my form to upload files and in another partial i am listing the files uploaded. right now I have to redirect the page after uploading the files. But how display my file list partial initially and update it with adding the newly added file info every time i upload a new file…
any help appreciated

regards,
venkat

]]>
By: zardiw https://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/comment-page-1/#comment-137866 Mon, 07 Jan 2008 02:08:32 +0000 http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/#comment-137866 All you really need is the first part. The form’s target=”IFrameName” is all that really matters.

As far as the IFrame. You can give it a width and height, and then any text that you generate in the php upload file will show there.

Really simple.

]]>
By: jeffguroo https://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/comment-page-1/#comment-129899 Wed, 12 Dec 2007 05:34:15 +0000 http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/#comment-129899 after beeting my head against this all day, I have found that doing a simple

1
render :partial => "successful_attachment"

also works quite well in Rails v1.2.3 and the acts_as_attachment plugin. Thanks for the file upload/AJAX workaround… a lifesaver.

]]>
By: Dmytro Shteflyuk https://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/comment-page-1/#comment-129890 Wed, 12 Dec 2007 04:35:16 +0000 http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/#comment-129890 jeffguroo, you right
It’s impossible to upload file using AJAX’s XMLHttpRequest. So I have written this post to show how to do it using iframe.

Thanks for comment about broken link, I have fixed it.

]]>
By: jeffguroo https://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/comment-page-1/#comment-129839 Wed, 12 Dec 2007 00:46:59 +0000 http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/#comment-129839 The above mentioned plugin is: respondes_to_parent

]]>