<?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: Ext JS Screencast #003 &#8211; Ext.apply explained</title>
	<atom:link href="http://tdg-i.com/42/ext-js-screencast-003-extapply-published/feed" rel="self" type="application/rss+xml" />
	<link>http://tdg-i.com/42/ext-js-screencast-003-extapply-published</link>
	<description>Technology, web application and server side development, all about TDG innovations.</description>
	<lastBuildDate>Sun, 07 Mar 2010 15:11: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: Ed Spencer &#187; How Ext.apply works, and how to avoid a big headache</title>
		<link>http://tdg-i.com/42/ext-js-screencast-003-extapply-published/comment-page-1#comment-123</link>
		<dc:creator>Ed Spencer &#187; How Ext.apply works, and how to avoid a big headache</dc:creator>
		<pubDate>Sun, 13 Sep 2009 17:45:42 +0000</pubDate>
		<guid isPermaLink="false">http://tdg-i.com/42/ext-js-screencast-003-extapply-published#comment-123</guid>
		<description>[...] know how it works inside, but while watching an otherwise excellent screencast from Jay Garcia (see http://tdg-i.com/42/ext-js-screencast-003-extapply-published), something odd happened. The example he gave went like this (commented lines signify the output [...]</description>
		<content:encoded><![CDATA[<p>[...] know how it works inside, but while watching an otherwise excellent screencast from Jay Garcia (see <a href="http://tdg-i.com/42/ext-js-screencast-003-extapply-published)" rel="nofollow">http://tdg-i.com/42/ext-js-screencast-003-extapply-published)</a>, something odd happened. The example he gave went like this (commented lines signify the output [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay Garcia</title>
		<link>http://tdg-i.com/42/ext-js-screencast-003-extapply-published/comment-page-1#comment-17</link>
		<dc:creator>Jay Garcia</dc:creator>
		<pubDate>Thu, 28 Aug 2008 10:37:45 +0000</pubDate>
		<guid isPermaLink="false">http://tdg-i.com/42/ext-js-screencast-003-extapply-published#comment-17</guid>
		<description>For anyone following this thread, there is a very intelligent conversation regarding t his exact same subject in the Ext forums. &lt;a target=&#039;_blank&#039; href=&#039;http://extjs.com/forum/showthread.php?t=45430&#039; rel=&quot;nofollow&quot;&gt;http://extjs.com/forum/showthread.php?t=45430&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>For anyone following this thread, there is a very intelligent conversation regarding t his exact same subject in the Ext forums. <a target='_blank' href='http://extjs.com/forum/showthread.php?t=45430' rel="nofollow">http://extjs.com/forum/showthread.php?t=45430</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay Garcia</title>
		<link>http://tdg-i.com/42/ext-js-screencast-003-extapply-published/comment-page-1#comment-16</link>
		<dc:creator>Jay Garcia</dc:creator>
		<pubDate>Wed, 27 Aug 2008 19:46:20 +0000</pubDate>
		<guid isPermaLink="false">http://tdg-i.com/42/ext-js-screencast-003-extapply-published#comment-16</guid>
		<description>Hi Ed,

Thank you very much for your feedback.  You&#039;re absolutely correct that I should have pointed out the fact that the first parameter will always receive the parameters.   I think diving into the source of &#039;&lt;extDir&gt;/source/core/Ext.js&#039; would explain how it works.

Part of the reason I assign obj3 to the result of the merge of obj2 and obj1 is because many examples do this, even though, as you pointed out, the obj2 reference is the exact same obj3.    Below is reformatted code for Ext.apply.
&lt;br /&gt;
&lt;img src=&#039;http://tdg-i.com/img/screencasts/2008-08-27_1547.png&#039;&gt;

Keep up the great work :).</description>
		<content:encoded><![CDATA[<p>Hi Ed,</p>
<p>Thank you very much for your feedback.  You&#8217;re absolutely correct that I should have pointed out the fact that the first parameter will always receive the parameters.   I think diving into the source of &#8216;<extdir>/source/core/Ext.js&#8217; would explain how it works.</p>
<p>Part of the reason I assign obj3 to the result of the merge of obj2 and obj1 is because many examples do this, even though, as you pointed out, the obj2 reference is the exact same obj3.    Below is reformatted code for Ext.apply.<br />
<br />
<img src='http://tdg-i.com/img/screencasts/2008-08-27_1547.png'/></p>
<p>Keep up the great work <img src='http://tdg-i.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</extdir></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: edspencer</title>
		<link>http://tdg-i.com/42/ext-js-screencast-003-extapply-published/comment-page-1#comment-14</link>
		<dc:creator>edspencer</dc:creator>
		<pubDate>Wed, 27 Aug 2008 17:55:49 +0000</pubDate>
		<guid isPermaLink="false">http://tdg-i.com/42/ext-js-screencast-003-extapply-published#comment-14</guid>
		<description>Hi Jay,

Thanks for putting these together, though this one did confuse me a little.  I was writing a comment but it became far too long so I turned it into a blog post instead at &lt;a href=&quot;http://edspencer.net/2008/08/how-extapply-works-and-how-to-avoid-big.html&quot; rel=&quot;nofollow&quot;&gt;http://edspencer.net/2008/08/how-extapply-works-and-how-to-avoid-big.html&lt;/a&gt;.

The gist is I think Ext.apply doesn&#039;t quite work the way your screencast makes it appear to, due to your obj2 and obj3 being references to the same object.  I think I&#039;ve got the reasoning right on my post but couldn&#039;t give a good reason why it was behaving the way it does - perhaps you have some idea about that?

Anyway thanks for making these screencasts, and yes, a higher quality version would be great!</description>
		<content:encoded><![CDATA[<p>Hi Jay,</p>
<p>Thanks for putting these together, though this one did confuse me a little.  I was writing a comment but it became far too long so I turned it into a blog post instead at <a href="http://edspencer.net/2008/08/how-extapply-works-and-how-to-avoid-big.html" rel="nofollow">http://edspencer.net/2008/08/how-extapply-works-and-how-to-avoid-big.html</a>.</p>
<p>The gist is I think Ext.apply doesn&#8217;t quite work the way your screencast makes it appear to, due to your obj2 and obj3 being references to the same object.  I think I&#8217;ve got the reasoning right on my post but couldn&#8217;t give a good reason why it was behaving the way it does &#8211; perhaps you have some idea about that?</p>
<p>Anyway thanks for making these screencasts, and yes, a higher quality version would be great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay Garcia</title>
		<link>http://tdg-i.com/42/ext-js-screencast-003-extapply-published/comment-page-1#comment-10</link>
		<dc:creator>Jay Garcia</dc:creator>
		<pubDate>Mon, 04 Aug 2008 12:27:48 +0000</pubDate>
		<guid isPermaLink="false">http://tdg-i.com/42/ext-js-screencast-003-extapply-published#comment-10</guid>
		<description>Thank you for the comments :).  I am hoping to get one done for Ext.each soon.  I&#039;m being hit hard by the youTube 10 minute limit. :(

I&#039;m thinking of hosting my own videos, that will have better quality, so the text will be easier to read.  thoughts?</description>
		<content:encoded><![CDATA[<p>Thank you for the comments <img src='http://tdg-i.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .  I am hoping to get one done for Ext.each soon.  I&#8217;m being hit hard by the youTube 10 minute limit. <img src='http://tdg-i.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>I&#8217;m thinking of hosting my own videos, that will have better quality, so the text will be easier to read.  thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: neon22</title>
		<link>http://tdg-i.com/42/ext-js-screencast-003-extapply-published/comment-page-1#comment-7</link>
		<dc:creator>neon22</dc:creator>
		<pubDate>Fri, 18 Jul 2008 23:15:48 +0000</pubDate>
		<guid isPermaLink="false">http://tdg-i.com/42/ext-js-screencast-003-extapply-published#comment-7</guid>
		<description>The sketchcasting is coming along well. (I must admit to some initial skeptiscism.)

Thanks for explaining Ext.Apply so clearly. (shame about Firebug error :-))</description>
		<content:encoded><![CDATA[<p>The sketchcasting is coming along well. (I must admit to some initial skeptiscism.)</p>
<p>Thanks for explaining Ext.Apply so clearly. (shame about Firebug error <img src='http://tdg-i.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> )</p>
]]></content:encoded>
	</item>
</channel>
</rss>
