<?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: Composite JavaScript Applications With Backbone And Backbone.Marionette</title>
	<atom:link href="http://lostechies.com/derickbailey/2011/12/16/composite-javascript-applications-with-backbone-and-backbone-marionette/feed/" rel="self" type="application/rss+xml" />
	<link>http://lostechies.com/derickbailey/2011/12/16/composite-javascript-applications-with-backbone-and-backbone-marionette/</link>
	<description>Better Than Yesterday</description>
	<lastBuildDate>Fri, 24 May 2013 06:39: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: Dale Anderson</title>
		<link>http://lostechies.com/derickbailey/2011/12/16/composite-javascript-applications-with-backbone-and-backbone-marionette/#comment-2978</link>
		<dc:creator>Dale Anderson</dc:creator>
		<pubDate>Tue, 15 Jan 2013 14:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=728#comment-2978</guid>
		<description>G&#039;day Derick, this is cool stuff. 

I&#039;ve written a composite Javascript library built on top of knockout.js. For loose coupling, it uses a pubsub engine for communication between components. It works pretty well and is being used in a fairly sizeable product (yet to be released).

http://danderson00.blogspot.com.au/2012/08/introducing-knockoutcomposite.html

I&#039;d love to hear what you think!</description>
		<content:encoded><![CDATA[<p>G&#8217;day Derick, this is cool stuff. </p>
<p>I&#8217;ve written a composite Javascript library built on top of knockout.js. For loose coupling, it uses a pubsub engine for communication between components. It works pretty well and is being used in a fairly sizeable product (yet to be released).</p>
<p><a href="http://danderson00.blogspot.com.au/2012/08/introducing-knockoutcomposite.html" rel="nofollow">http://danderson00.blogspot.com.au/2012/08/introducing-knockoutcomposite.html</a></p>
<p>I&#8217;d love to hear what you think!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daman</title>
		<link>http://lostechies.com/derickbailey/2011/12/16/composite-javascript-applications-with-backbone-and-backbone-marionette/#comment-2963</link>
		<dc:creator>daman</dc:creator>
		<pubDate>Sun, 06 Jan 2013 11:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=728#comment-2963</guid>
		<description>I am trying to build a complex app using Backbonne.Marionette with Boilerplate.

I am confused of how to use controller.  The Backbone.Marionette.Layout has been used in the App.initAppLayout function in app.js

the controller is handling the route functions.  i want to use controller function to 
show view in a region. there are three regions - navmenu, content and footer
Please advise how I can attain this.</description>
		<content:encoded><![CDATA[<p>I am trying to build a complex app using Backbonne.Marionette with Boilerplate.</p>
<p>I am confused of how to use controller.  The Backbone.Marionette.Layout has been used in the App.initAppLayout function in app.js</p>
<p>the controller is handling the route functions.  i want to use controller function to<br />
show view in a region. there are three regions &#8211; navmenu, content and footer<br />
Please advise how I can attain this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derick Bailey</title>
		<link>http://lostechies.com/derickbailey/2011/12/16/composite-javascript-applications-with-backbone-and-backbone-marionette/#comment-2173</link>
		<dc:creator>Derick Bailey</dc:creator>
		<pubDate>Mon, 30 Jan 2012 14:18:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=728#comment-2173</guid>
		<description>`addRegions` only works as a short cut to creating a region for you. it must be called before the &quot;start&quot; method, or it won&#039;t instantiate the regions.

You can create your own region manager instances, though. I&#039;ve updated the documentation for Marionette to point out how to do this in the &quot;Marionette.RegionManager&quot; section: https://github.com/derickbailey/backbone.marionette
</description>
		<content:encoded><![CDATA[<p>`addRegions` only works as a short cut to creating a region for you. it must be called before the &#8220;start&#8221; method, or it won&#8217;t instantiate the regions.</p>
<p>You can create your own region manager instances, though. I&#8217;ve updated the documentation for Marionette to point out how to do this in the &#8220;Marionette.RegionManager&#8221; section: <a href="https://github.com/derickbailey/backbone.marionette" rel="nofollow">https://github.com/derickbailey/backbone.marionette</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://lostechies.com/derickbailey/2011/12/16/composite-javascript-applications-with-backbone-and-backbone-marionette/#comment-2169</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Sun, 29 Jan 2012 22:24:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=728#comment-2169</guid>
		<description>Would it be possible to add a region that has been added dynamically to the body after the initial regions are defined?

I append a DIV element as part of my app and I wanted to add a region to the RegionManager that is contained within that dynamically added DIV.

I&#039;ve used the addRegions method and that new region does appear in the MyApp.regions, but I&#039;ve appeared to hit a snag with using the show method as it appears to indicate that MyApp.newRegion is undefined.  Is there a step beyond the addRegions method that I&#039;m missing?</description>
		<content:encoded><![CDATA[<p>Would it be possible to add a region that has been added dynamically to the body after the initial regions are defined?</p>
<p>I append a DIV element as part of my app and I wanted to add a region to the RegionManager that is contained within that dynamically added DIV.</p>
<p>I&#8217;ve used the addRegions method and that new region does appear in the MyApp.regions, but I&#8217;ve appeared to hit a snag with using the show method as it appears to indicate that MyApp.newRegion is undefined.  Is there a step beyond the addRegions method that I&#8217;m missing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan (Danny) Fellars</title>
		<link>http://lostechies.com/derickbailey/2011/12/16/composite-javascript-applications-with-backbone-and-backbone-marionette/#comment-2102</link>
		<dc:creator>Dan (Danny) Fellars</dc:creator>
		<pubDate>Thu, 12 Jan 2012 05:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=728#comment-2102</guid>
		<description>Ah, great post. very helpful. Thanks again Derick!</description>
		<content:encoded><![CDATA[<p>Ah, great post. very helpful. Thanks again Derick!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derick Bailey</title>
		<link>http://lostechies.com/derickbailey/2011/12/16/composite-javascript-applications-with-backbone-and-backbone-marionette/#comment-2101</link>
		<dc:creator>Derick Bailey</dc:creator>
		<pubDate>Thu, 12 Jan 2012 02:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=728#comment-2101</guid>
		<description>Hi Dan,

Both of those options are valid - there&#039;s nothing wrong with using the ItemView for a collection or using a CollectionView + ItemView for a collection. When you use each is the real question. 

I&#039;ve outlined a couple of scenarios and guidelines for this in another post: http://lostechies.com/derickbailey/2011/10/11/backbone-js-getting-the-model-for-a-clicked-element/

The title is a bit misleading because it was in response to a specific question I&#039;ve seen multiple times, but it covers exactly these two scenarios in the answer. There are other good reasons for when to use which, as well. That post covers a few of the basics, though.

Hope that helps.</description>
		<content:encoded><![CDATA[<p>Hi Dan,</p>
<p>Both of those options are valid &#8211; there&#8217;s nothing wrong with using the ItemView for a collection or using a CollectionView + ItemView for a collection. When you use each is the real question. </p>
<p>I&#8217;ve outlined a couple of scenarios and guidelines for this in another post: http://lostechies.com/derickbailey/2011/10/11/backbone-js-getting-the-model-for-a-clicked-element/</p>
<p>The title is a bit misleading because it was in response to a specific question I&#8217;ve seen multiple times, but it covers exactly these two scenarios in the answer. There are other good reasons for when to use which, as well. That post covers a few of the basics, though.</p>
<p>Hope that helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan (Danny) Fellars</title>
		<link>http://lostechies.com/derickbailey/2011/12/16/composite-javascript-applications-with-backbone-and-backbone-marionette/#comment-2100</link>
		<dc:creator>Dan (Danny) Fellars</dc:creator>
		<pubDate>Thu, 12 Jan 2012 00:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=728#comment-2100</guid>
		<description>Derick, I&#039;m continuing to play with Marionette and have another question.  I&#039;m struggling with when to use a CollectionView instead of an ItemView whose template has a {{each}} loop in the template.  Can you think of use cases where one is better than other?  It seems that if your Collection has any kind of global info (like a header to a list), then it needs to be an ItemView. </description>
		<content:encoded><![CDATA[<p>Derick, I&#8217;m continuing to play with Marionette and have another question.  I&#8217;m struggling with when to use a CollectionView instead of an ItemView whose template has a {{each}} loop in the template.  Can you think of use cases where one is better than other?  It seems that if your Collection has any kind of global info (like a header to a list), then it needs to be an ItemView. </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Khurram Hanif</title>
		<link>http://lostechies.com/derickbailey/2011/12/16/composite-javascript-applications-with-backbone-and-backbone-marionette/#comment-2060</link>
		<dc:creator>Khurram Hanif</dc:creator>
		<pubDate>Sun, 25 Dec 2011 22:47:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=728#comment-2060</guid>
		<description>Great work. Perhaps you should also look into http://angularjs.org 
Yet another JS framework which I found more simple than Backbone and already ships a number of features not available in other frameworks (Composite apps).</description>
		<content:encoded><![CDATA[<p>Great work. Perhaps you should also look into <a href="http://angularjs.org " rel="nofollow">http://angularjs.org </a><br />
Yet another JS framework which I found more simple than Backbone and already ships a number of features not available in other frameworks (Composite apps).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derick Bailey</title>
		<link>http://lostechies.com/derickbailey/2011/12/16/composite-javascript-applications-with-backbone-and-backbone-marionette/#comment-2049</link>
		<dc:creator>Derick Bailey</dc:creator>
		<pubDate>Mon, 19 Dec 2011 04:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=728#comment-2049</guid>
		<description>I looked at LayoutManager a week ago and really liked what I saw. By the time I started playing with it, though, I already had a lot of code in place for the project that Marionette came out of. I spent an hour or two looking at LayoutManager to see if I could replace what I had. I think I have a few different opinions on how I want to build Backbone apps, compared to Tim&#039;s LayoutManager... so I extracted Marionette from my project instead of trying to rebuild that app on top of LayoutManager. I&#039;m sure there&#039;s a ton of overlap between what I started here and what Tim is doing. I really need to dig deeper into LayoutManager more and see if I&#039;m heading in the same direction or not. 

If anyone else is looking for a composite app structure for Backbone, be sure to check out Tim&#039;s project: https://github.com/tbranyen/backbone.layoutmanager</description>
		<content:encoded><![CDATA[<p>I looked at LayoutManager a week ago and really liked what I saw. By the time I started playing with it, though, I already had a lot of code in place for the project that Marionette came out of. I spent an hour or two looking at LayoutManager to see if I could replace what I had. I think I have a few different opinions on how I want to build Backbone apps, compared to Tim&#8217;s LayoutManager&#8230; so I extracted Marionette from my project instead of trying to rebuild that app on top of LayoutManager. I&#8217;m sure there&#8217;s a ton of overlap between what I started here and what Tim is doing. I really need to dig deeper into LayoutManager more and see if I&#8217;m heading in the same direction or not. </p>
<p>If anyone else is looking for a composite app structure for Backbone, be sure to check out Tim&#8217;s project: https://github.com/tbranyen/backbone.layoutmanager</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://lostechies.com/derickbailey/2011/12/16/composite-javascript-applications-with-backbone-and-backbone-marionette/#comment-2048</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Mon, 19 Dec 2011 03:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=728#comment-2048</guid>
		<description>This looks pretty useful, seeing as how right now I can&#039;t decide how to handle creating a new &quot;region&quot; for my app (listing a library of items and providing a search interface).

One question, how does your RegionManager differ from Backbone.LayoutManager? I haven&#039;t looked into that too much but I thought it does pretty much the same? Sounds like you can choose to use that along with Marionette anyway, though.</description>
		<content:encoded><![CDATA[<p>This looks pretty useful, seeing as how right now I can&#8217;t decide how to handle creating a new &#8220;region&#8221; for my app (listing a library of items and providing a search interface).</p>
<p>One question, how does your RegionManager differ from Backbone.LayoutManager? I haven&#8217;t looked into that too much but I thought it does pretty much the same? Sounds like you can choose to use that along with Marionette anyway, though.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
