<?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: A Simple Example For Backbone.ModelBinding</title>
	<atom:link href="http://lostechies.com/derickbailey/2011/08/10/a-simple-example-for-backbone-modelbinding/feed/" rel="self" type="application/rss+xml" />
	<link>http://lostechies.com/derickbailey/2011/08/10/a-simple-example-for-backbone-modelbinding/</link>
	<description>Better Than Yesterday</description>
	<lastBuildDate>Fri, 17 May 2013 03:30:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>By: dagda1</title>
		<link>http://lostechies.com/derickbailey/2011/08/10/a-simple-example-for-backbone-modelbinding/#comment-1729</link>
		<dc:creator>dagda1</dc:creator>
		<pubDate>Thu, 11 Aug 2011 15:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=521#comment-1729</guid>
		<description>No, I just mean server side code and client side code being kept in sync.</description>
		<content:encoded><![CDATA[<p>No, I just mean server side code and client side code being kept in sync.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derick Bailey</title>
		<link>http://lostechies.com/derickbailey/2011/08/10/a-simple-example-for-backbone-modelbinding/#comment-1728</link>
		<dc:creator>Derick Bailey</dc:creator>
		<pubDate>Thu, 11 Aug 2011 15:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=521#comment-1728</guid>
		<description>i must be misunderstanding what you&#039;re getting after... i still don&#039;t see how there is any possibility of sync issues, with the fetch. 

are you talking about a scenario where you&#039;ve deployed new code to the server, while a user is currently on a page that uses a backbone setup?</description>
		<content:encoded><![CDATA[<p>i must be misunderstanding what you&#8217;re getting after&#8230; i still don&#8217;t see how there is any possibility of sync issues, with the fetch. </p>
<p>are you talking about a scenario where you&#8217;ve deployed new code to the server, while a user is currently on a page that uses a backbone setup?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dagda1</title>
		<link>http://lostechies.com/derickbailey/2011/08/10/a-simple-example-for-backbone-modelbinding/#comment-1727</link>
		<dc:creator>dagda1</dc:creator>
		<pubDate>Thu, 11 Aug 2011 15:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=521#comment-1727</guid>
		<description>You&#039;re right in that respect.

One of the reasons I chose backbone instead of knockout was because of the fetch capability of the model and synching with the server.   I could be wrong but there seems less room for synchronisation issues this way.</description>
		<content:encoded><![CDATA[<p>You&#8217;re right in that respect.</p>
<p>One of the reasons I chose backbone instead of knockout was because of the fetch capability of the model and synching with the server.   I could be wrong but there seems less room for synchronisation issues this way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derick Bailey</title>
		<link>http://lostechies.com/derickbailey/2011/08/10/a-simple-example-for-backbone-modelbinding/#comment-1726</link>
		<dc:creator>Derick Bailey</dc:creator>
		<pubDate>Thu, 11 Aug 2011 14:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=521#comment-1726</guid>
		<description>true. when this happens, would you let your ERB/HAML/ASP.NET MVC views lay stale, still trying to find &quot;first_name&quot; when the model is now called &quot;firstname&quot; ? not likely... the backbone code should get the same 1st class treatment as the standard views, and should be updated accordingly.</description>
		<content:encoded><![CDATA[<p>true. when this happens, would you let your ERB/HAML/ASP.NET MVC views lay stale, still trying to find &#8220;first_name&#8221; when the model is now called &#8220;firstname&#8221; ? not likely&#8230; the backbone code should get the same 1st class treatment as the standard views, and should be updated accordingly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dagda1</title>
		<link>http://lostechies.com/derickbailey/2011/08/10/a-simple-example-for-backbone-modelbinding/#comment-1725</link>
		<dc:creator>dagda1</dc:creator>
		<pubDate>Thu, 11 Aug 2011 14:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=521#comment-1725</guid>
		<description>First name is a bad example, but model code changes, attributes get added, modified and removed all the time.  </description>
		<content:encoded><![CDATA[<p>First name is a bad example, but model code changes, attributes get added, modified and removed all the time.  </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derick Bailey</title>
		<link>http://lostechies.com/derickbailey/2011/08/10/a-simple-example-for-backbone-modelbinding/#comment-1724</link>
		<dc:creator>Derick Bailey</dc:creator>
		<pubDate>Thu, 11 Aug 2011 14:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=521#comment-1724</guid>
		<description>yes, your right... but why would you do that? this would cause all kinds of problems not related to my plugin. the json that comes back from the server should be what the client side uses. if your model&#039;s properties are &#039;firstname&#039; and &#039;lastname&#039; on the server, then they should be this in the javascript / backbone code as well.</description>
		<content:encoded><![CDATA[<p>yes, your right&#8230; but why would you do that? this would cause all kinds of problems not related to my plugin. the json that comes back from the server should be what the client side uses. if your model&#8217;s properties are &#8216;firstname&#8217; and &#8216;lastname&#8217; on the server, then they should be this in the javascript / backbone code as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dagda1</title>
		<link>http://lostechies.com/derickbailey/2011/08/10/a-simple-example-for-backbone-modelbinding/#comment-1723</link>
		<dc:creator>dagda1</dc:creator>
		<pubDate>Thu, 11 Aug 2011 14:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=521#comment-1723</guid>
		<description>I mean if in this example I removed or renamed the first_name attribute to firstname from the server side (ruby, C# etc.) class then I need to update my client side mark up to update the data-binding attribute to data-binding=&quot;firstname&quot; or am I missing something?</description>
		<content:encoded><![CDATA[<p>I mean if in this example I removed or renamed the first_name attribute to firstname from the server side (ruby, C# etc.) class then I need to update my client side mark up to update the data-binding attribute to data-binding=&#8221;firstname&#8221; or am I missing something?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derick Bailey</title>
		<link>http://lostechies.com/derickbailey/2011/08/10/a-simple-example-for-backbone-modelbinding/#comment-1722</link>
		<dc:creator>Derick Bailey</dc:creator>
		<pubDate>Thu, 11 Aug 2011 13:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=521#comment-1722</guid>
		<description>i&#039;m not quite following you.. can you explain that scenario a little more? what is being updated, when, and when is the data being transferred to / from the server?</description>
		<content:encoded><![CDATA[<p>i&#8217;m not quite following you.. can you explain that scenario a little more? what is being updated, when, and when is the data being transferred to / from the server?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dagda1</title>
		<link>http://lostechies.com/derickbailey/2011/08/10/a-simple-example-for-backbone-modelbinding/#comment-1721</link>
		<dc:creator>dagda1</dc:creator>
		<pubDate>Thu, 11 Aug 2011 13:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=521#comment-1721</guid>
		<description>The only problem I see is that the server model attributes change and you need to update the dat-bind attributes.  Synching with the JSON would be nice</description>
		<content:encoded><![CDATA[<p>The only problem I see is that the server model attributes change and you need to update the dat-bind attributes.  Synching with the JSON would be nice</p>
]]></content:encoded>
	</item>
</channel>
</rss>
