<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Difference form submission in Javascript</title>
	<atom:link href="http://www.fliquidstudios.com/2008/12/29/difference-form-submission-in-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fliquidstudios.com/2008/12/29/difference-form-submission-in-javascript/</link>
	<description>Beautiful Web Applications</description>
	<lastBuildDate>Fri, 03 Feb 2012 17:24:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Difference form submission in Javascript - follow up &#124; Fliquid Studios</title>
		<link>http://www.fliquidstudios.com/2008/12/29/difference-form-submission-in-javascript/comment-page-1/#comment-12445</link>
		<dc:creator>Difference form submission in Javascript - follow up &#124; Fliquid Studios</dc:creator>
		<pubDate>Sun, 01 Mar 2009 00:25:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.fliquidstudios.com/?p=68#comment-12445</guid>
		<description>[...] December 2008 I wrote an article introducing the concept of Difference forum submission in Javascript. We received some positive responses from this article and some requests for examples of exactly [...]</description>
		<content:encoded><![CDATA[<p>[...] December 2008 I wrote an article introducing the concept of Difference forum submission in Javascript. We received some positive responses from this article and some requests for examples of exactly [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Little</title>
		<link>http://www.fliquidstudios.com/2008/12/29/difference-form-submission-in-javascript/comment-page-1/#comment-17</link>
		<dc:creator>Michael Little</dc:creator>
		<pubDate>Tue, 30 Dec 2008 22:14:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.fliquidstudios.com/?p=68#comment-17</guid>
		<description>I am not an ASP.NET developer so please correct me if I am wrong but my understanding of view state is that it is intended to maintain (persist) state across multiple posts. It does this by adding a hidden field to the page that carries around ALL of the data potentially making the requests quite large.

The main purpose of the concept I am proposing is to reduce the number of fields being posted back to the server (either for performance or to allow multiple users to edit the same record concurrently). Another major difference is that this concept is purely Javascript. It doesn&#039;t require anything to be done on the server side other than for you application to be aware that not all fields will always be posted.

Hope that helps to clear things up.</description>
		<content:encoded><![CDATA[<p>I am not an ASP.NET developer so please correct me if I am wrong but my understanding of view state is that it is intended to maintain (persist) state across multiple posts. It does this by adding a hidden field to the page that carries around ALL of the data potentially making the requests quite large.</p>
<p>The main purpose of the concept I am proposing is to reduce the number of fields being posted back to the server (either for performance or to allow multiple users to edit the same record concurrently). Another major difference is that this concept is purely Javascript. It doesn&#8217;t require anything to be done on the server side other than for you application to be aware that not all fields will always be posted.</p>
<p>Hope that helps to clear things up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chase Saunders</title>
		<link>http://www.fliquidstudios.com/2008/12/29/difference-form-submission-in-javascript/comment-page-1/#comment-15</link>
		<dc:creator>Chase Saunders</dc:creator>
		<pubDate>Tue, 30 Dec 2008 15:34:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.fliquidstudios.com/?p=68#comment-15</guid>
		<description>This kinda sounds like ASP.NET&#039;s ViewState mechanism</description>
		<content:encoded><![CDATA[<p>This kinda sounds like ASP.NET&#8217;s ViewState mechanism</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nitin Reddy</title>
		<link>http://www.fliquidstudios.com/2008/12/29/difference-form-submission-in-javascript/comment-page-1/#comment-13</link>
		<dc:creator>Nitin Reddy</dc:creator>
		<pubDate>Tue, 30 Dec 2008 11:26:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.fliquidstudios.com/?p=68#comment-13</guid>
		<description>Hi!

I&#039;ve been using difference form submission through custom Javascript as I&#039;m not aware of any library that does this. I usually have to rebuild the script for each project due to intellectual property issues :-(

-Nitin</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>I&#8217;ve been using difference form submission through custom Javascript as I&#8217;m not aware of any library that does this. I usually have to rebuild the script for each project due to intellectual property issues <img src='http://www.fliquidstudios.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>-Nitin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Little</title>
		<link>http://www.fliquidstudios.com/2008/12/29/difference-form-submission-in-javascript/comment-page-1/#comment-12</link>
		<dc:creator>Michael Little</dc:creator>
		<pubDate>Tue, 30 Dec 2008 10:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.fliquidstudios.com/?p=68#comment-12</guid>
		<description>We haven&#039;t done any benchmarking to measure performance. Any performance increase or request size reduction would no doubt be minimal unless you are dealing with quite large forms. The main reason we have used it was to avoid &quot;clobbering&quot; of data in high user applications.

I have developed an application that uses this concept in AJAX. It does perform the form submission slightly differently to typical forms and so does not need to disable the fields themselves. It would also be possible to disable and re-enable the fields.

I will be posting an example library for this concept soon and I will also investigate the possibility of writing a jQuery plugin.

Thanks for your comments.</description>
		<content:encoded><![CDATA[<p>We haven&#8217;t done any benchmarking to measure performance. Any performance increase or request size reduction would no doubt be minimal unless you are dealing with quite large forms. The main reason we have used it was to avoid &#8220;clobbering&#8221; of data in high user applications.</p>
<p>I have developed an application that uses this concept in AJAX. It does perform the form submission slightly differently to typical forms and so does not need to disable the fields themselves. It would also be possible to disable and re-enable the fields.</p>
<p>I will be posting an example library for this concept soon and I will also investigate the possibility of writing a jQuery plugin.</p>
<p>Thanks for your comments.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Loïc Hoguin</title>
		<link>http://www.fliquidstudios.com/2008/12/29/difference-form-submission-in-javascript/comment-page-1/#comment-10</link>
		<dc:creator>Loïc Hoguin</dc:creator>
		<pubDate>Tue, 30 Dec 2008 09:59:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.fliquidstudios.com/?p=68#comment-10</guid>
		<description>That&#039;s interesting indeed. Do you have any numbers showing how much it helps? Also, do you use it with xmlhttprequest queries? Because if you leave the form available for more input you&#039;d need to reenable the correct fields too.

A jQuery plugin would be great, especially one that could work side by side with the form plugin.</description>
		<content:encoded><![CDATA[<p>That&#8217;s interesting indeed. Do you have any numbers showing how much it helps? Also, do you use it with xmlhttprequest queries? Because if you leave the form available for more input you&#8217;d need to reenable the correct fields too.</p>
<p>A jQuery plugin would be great, especially one that could work side by side with the form plugin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jann</title>
		<link>http://www.fliquidstudios.com/2008/12/29/difference-form-submission-in-javascript/comment-page-1/#comment-9</link>
		<dc:creator>Jann</dc:creator>
		<pubDate>Tue, 30 Dec 2008 09:48:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.fliquidstudios.com/?p=68#comment-9</guid>
		<description>good idea to use default values. Didn&#039;t know they exists. :o</description>
		<content:encoded><![CDATA[<p>good idea to use default values. Didn&#8217;t know they exists. <img src='http://www.fliquidstudios.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

