<?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: FubuToDo &#8211; Part 2: Forms, Controllers, View, and jQuery</title>
	<atom:link href="http://www.joshua-arnold.com/2010/01/fubutodo-part-2-forms-controllers-view-and-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.joshua-arnold.com/2010/01/fubutodo-part-2-forms-controllers-view-and-jquery/</link>
	<description>Random thoughts on software development, life, and the art of growing old.</description>
	<lastBuildDate>Tue, 31 Aug 2010 16:43:46 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kurt</title>
		<link>http://www.joshua-arnold.com/2010/01/fubutodo-part-2-forms-controllers-view-and-jquery/comment-page-1/#comment-279</link>
		<dc:creator>Kurt</dc:creator>
		<pubDate>Thu, 22 Apr 2010 18:15:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshua-arnold.com/?p=262#comment-279</guid>
		<description>Great articles, thank you. FubuMVC looks promising.

Worth mentioning, with the latest Fubu build the following has been replaced:
           JsonOutputIf.WhenTheOutputModelIs();

with
            
Output.ToJson.WhenTheOutputModelIs();</description>
		<content:encoded><![CDATA[<p>Great articles, thank you. FubuMVC looks promising.</p>
<p>Worth mentioning, with the latest Fubu build the following has been replaced:<br />
           JsonOutputIf.WhenTheOutputModelIs();</p>
<p>with</p>
<p>Output.ToJson.WhenTheOutputModelIs();</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://www.joshua-arnold.com/2010/01/fubutodo-part-2-forms-controllers-view-and-jquery/comment-page-1/#comment-272</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Wed, 10 Feb 2010 23:07:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshua-arnold.com/?p=262#comment-272</guid>
		<description>@smaclell thanks for catching that. I&#039;ve updated the tags to reflect that change.</description>
		<content:encoded><![CDATA[<p>@smaclell thanks for catching that. I&#8217;ve updated the tags to reflect that change.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: smaclell</title>
		<link>http://www.joshua-arnold.com/2010/01/fubutodo-part-2-forms-controllers-view-and-jquery/comment-page-1/#comment-271</link>
		<dc:creator>smaclell</dc:creator>
		<pubDate>Wed, 10 Feb 2010 22:54:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshua-arnold.com/?p=262#comment-271</guid>
		<description>For those looking through the code the Scripts/home/index.js file does not correctly setup the ajaxSubmit. 

instead of 
$(&#039;frmItem&#039;).submit( function() {
   $(this).ajaxSubmit( ... setup goes here ...);
});

it needs to be
$(&#039;frmItem&#039;).submit( function() {
   $(this).ajaxSubmit( ... setup goes here ...);

   // this prevents a redirect to a view showing you the returned json. 
   // See jquery.form.js documentation for details.
   return false;
});</description>
		<content:encoded><![CDATA[<p>For those looking through the code the Scripts/home/index.js file does not correctly setup the ajaxSubmit. </p>
<p>instead of<br />
$(&#8217;frmItem&#8217;).submit( function() {<br />
   $(this).ajaxSubmit( &#8230; setup goes here &#8230;);<br />
});</p>
<p>it needs to be<br />
$(&#8217;frmItem&#8217;).submit( function() {<br />
   $(this).ajaxSubmit( &#8230; setup goes here &#8230;);</p>
<p>   // this prevents a redirect to a view showing you the returned json.<br />
   // See jquery.form.js documentation for details.<br />
   return false;<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake Scot</title>
		<link>http://www.joshua-arnold.com/2010/01/fubutodo-part-2-forms-controllers-view-and-jquery/comment-page-1/#comment-264</link>
		<dc:creator>Jake Scot</dc:creator>
		<pubDate>Mon, 18 Jan 2010 10:36:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshua-arnold.com/?p=262#comment-264</guid>
		<description>Hi Josh, instead of using 
jQuery.ajax({
data: { random: new Date().getUTCMilliseconds() },
});

you can tell jQuery not to cache the result (It appends a random timestamp to the request) by going

jQuery.ajax({  
  cache:false
});

or globally

jQuery.ajaxSetup({
  cache:false
});</description>
		<content:encoded><![CDATA[<p>Hi Josh, instead of using<br />
jQuery.ajax({<br />
data: { random: new Date().getUTCMilliseconds() },<br />
});</p>
<p>you can tell jQuery not to cache the result (It appends a random timestamp to the request) by going</p>
<p>jQuery.ajax({<br />
  cache:false<br />
});</p>
<p>or globally</p>
<p>jQuery.ajaxSetup({<br />
  cache:false<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FubuMVC Example - Creating a To-Do application using FubuMVC (Part 1) - Joshua Arnold</title>
		<link>http://www.joshua-arnold.com/2010/01/fubutodo-part-2-forms-controllers-view-and-jquery/comment-page-1/#comment-263</link>
		<dc:creator>FubuMVC Example - Creating a To-Do application using FubuMVC (Part 1) - Joshua Arnold</dc:creator>
		<pubDate>Sun, 17 Jan 2010 23:23:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshua-arnold.com/?p=262#comment-263</guid>
		<description>[...] Part 2: Forms, Controllers, Views, and jQuery [...]</description>
		<content:encoded><![CDATA[<p>[...] Part 2: Forms, Controllers, Views, and jQuery [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
