<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: In-place file upload with Ruby on Rails</title>
	<atom:link href="http://kpumuk.info/ajax/in-place-file-upload-with-ruby-on-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://kpumuk.info/ajax/in-place-file-upload-with-ruby-on-rails/</link>
	<description>In my blog I'll try to describe about interesting technologies, my discovery in IT and some useful things about programming.</description>
	<pubDate>Mon, 08 Sep 2008 00:54:14 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: valen</title>
		<link>http://kpumuk.info/ajax/in-place-file-upload-with-ruby-on-rails/#comment-230046</link>
		<dc:creator>valen</dc:creator>
		<pubDate>Sun, 30 Nov 2008 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/#comment-230046</guid>
		<description>Вот здесь
 http://www.rubyf.info/blog/show/3

подробно рассмотрена данная тема с примерами.</description>
		<content:encoded><![CDATA[<p>Вот здесь<br />
 <a href="http://www.rubyf.info/blog/show/3" rel="nofollow">http://www.rubyf.info/blog/show/3</a></p>
<p>подробно рассмотрена данная тема с примерами.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Double Shot #203 &#124; Developer Home</title>
		<link>http://kpumuk.info/ajax/in-place-file-upload-with-ruby-on-rails/#comment-207135</link>
		<dc:creator>Double Shot #203 &#124; Developer Home</dc:creator>
		<pubDate>Fri, 30 Nov 2007 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/#comment-207135</guid>
		<description>[...] In-place file upload with Ruby on Rails - The GMail technique for asynchronous uploads. [...]</description>
		<content:encoded><![CDATA[<p>[...] In-place file upload with Ruby on Rails - The GMail technique for asynchronous uploads. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: A Fresh Cup &#187; Blog Archive &#187; Double Shot #203</title>
		<link>http://kpumuk.info/ajax/in-place-file-upload-with-ruby-on-rails/#comment-202193</link>
		<dc:creator>A Fresh Cup &#187; Blog Archive &#187; Double Shot #203</dc:creator>
		<pubDate>Thu, 30 Nov 2000 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/#comment-202193</guid>
		<description>[...] In-place file upload with Ruby on Rails - The GMail technique for asynchronous uploads. [...]</description>
		<content:encoded><![CDATA[<p>[...] In-place file upload with Ruby on Rails - The GMail technique for asynchronous uploads. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Venkat</title>
		<link>http://kpumuk.info/ajax/in-place-file-upload-with-ruby-on-rails/#comment-148292</link>
		<dc:creator>Venkat</dc:creator>
		<pubDate>Sun, 30 Nov 2003 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/#comment-148292</guid>
		<description>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</description>
		<content:encoded><![CDATA[<p>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&#8230;<br />
any help appreciated</p>
<p>regards,<br />
venkat</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zardiw</title>
		<link>http://kpumuk.info/ajax/in-place-file-upload-with-ruby-on-rails/#comment-137866</link>
		<dc:creator>zardiw</dc:creator>
		<pubDate>Sun, 30 Nov 2003 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/#comment-137866</guid>
		<description>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.</description>
		<content:encoded><![CDATA[<p>All you really need is the first part. The form&#8217;s target=&#8221;IFrameName&#8221; is all that really matters.</p>
<p>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. </p>
<p>Really simple.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeffguroo</title>
		<link>http://kpumuk.info/ajax/in-place-file-upload-with-ruby-on-rails/#comment-129899</link>
		<dc:creator>jeffguroo</dc:creator>
		<pubDate>Thu, 30 Nov 2006 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/#comment-129899</guid>
		<description>after beeting my head against this all day, I have found that doing a simple

[cc lang="ruby"]render :partial =&gt; "successful_attachment"[/cc]

also works quite well in Rails v1.2.3 and the acts_as_attachment plugin. Thanks for the file upload/AJAX workaround...  a lifesaver.</description>
		<content:encoded><![CDATA[<p>after beeting my head against this all day, I have found that doing a simple</p>
<div class="codecolorer-container ruby" style="height:35px;"><div class="codecolorer" style="font-family: monospace;">render <span class="re3">:partial</span> =&gt; <span class="st0">&quot;successful_attachment&quot;</span></div></div>
<p>also works quite well in Rails v1.2.3 and the acts_as_attachment plugin. Thanks for the file upload/AJAX workaround&#8230;  a lifesaver.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dmytro Shteflyuk</title>
		<link>http://kpumuk.info/ajax/in-place-file-upload-with-ruby-on-rails/#comment-129890</link>
		<dc:creator>Dmytro Shteflyuk</dc:creator>
		<pubDate>Wed, 30 Nov 2005 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/#comment-129890</guid>
		<description>jeffguroo, you right
It's impossible to upload file using AJAX's &lt;tt&gt;XMLHttpRequest&lt;/tt&gt;. So I have written this post to show how to do it using &lt;tt&gt;iframe&lt;/tt&gt;.

Thanks for comment about broken link, I have fixed it.</description>
		<content:encoded><![CDATA[<p>jeffguroo, you right<br />
It&#8217;s impossible to upload file using AJAX&#8217;s <tt>XMLHttpRequest</tt>. So I have written this post to show how to do it using <tt>iframe</tt>.</p>
<p>Thanks for comment about broken link, I have fixed it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeffguroo</title>
		<link>http://kpumuk.info/ajax/in-place-file-upload-with-ruby-on-rails/#comment-129839</link>
		<dc:creator>jeffguroo</dc:creator>
		<pubDate>Fri, 30 Nov 2001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/#comment-129839</guid>
		<description>The above mentioned plugin is: respondes_to_parent</description>
		<content:encoded><![CDATA[<p>The above mentioned plugin is: respondes_to_parent</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeffguroo</title>
		<link>http://kpumuk.info/ajax/in-place-file-upload-with-ruby-on-rails/#comment-129806</link>
		<dc:creator>jeffguroo</dc:creator>
		<pubDate>Wed, 30 Nov 2011 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/#comment-129806</guid>
		<description>Alright, that was because I was trying to do it with  remote_form instead of a form_for. Only the text was making it through. BTW what was the name of the plugin that was used for returning js to the iframe? That link is dead.</description>
		<content:encoded><![CDATA[<p>Alright, that was because I was trying to do it with  remote_form instead of a form_for. Only the text was making it through. BTW what was the name of the plugin that was used for returning js to the iframe? That link is dead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeffguroo</title>
		<link>http://kpumuk.info/ajax/in-place-file-upload-with-ruby-on-rails/#comment-129581</link>
		<dc:creator>jeffguroo</dc:creator>
		<pubDate>Wed, 30 Nov 2011 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/ruby-on-rails/in-place-file-upload-with-ruby-on-rails/#comment-129581</guid>
		<description>this solution only seems to work on txt files. Formatting for PDFs and Word Docs were hosed.</description>
		<content:encoded><![CDATA[<p>this solution only seems to work on txt files. Formatting for PDFs and Word Docs were hosed.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
