<?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: Basic DomHelper with ExtJS Library, creating simple div tags and anchors</title>
	<atom:link href="http://peterkellner.net/2008/11/24/domhelper-extjs-tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://peterkellner.net/2008/11/24/domhelper-extjs-tutorial/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=domhelper-extjs-tutorial</link>
	<description>Microsoft Focused, JavaScript,HTML5 (ExtJS, SenchaTouch &#38; Windows 8 Metro)</description>
	<lastBuildDate>Tue, 15 May 2012 21:53:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Rohan</title>
		<link>http://peterkellner.net/2008/11/24/domhelper-extjs-tutorial/#comment-28378</link>
		<dc:creator>Rohan</dc:creator>
		<pubDate>Thu, 21 Oct 2010 11:29:29 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2008/11/24/domhelper-extjs-tutorial/#comment-28378</guid>
		<description>heyy nice work man !!!....but,
How do i add domhelper to a panel ???

plzz reply...</description>
		<content:encoded><![CDATA[<p>heyy nice work man !!!&#8230;.but,<br />
How do i add domhelper to a panel ???</p>
<p>plzz reply&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://peterkellner.net/2008/11/24/domhelper-extjs-tutorial/#comment-26064</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Fri, 22 Jan 2010 17:13:51 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2008/11/24/domhelper-extjs-tutorial/#comment-26064</guid>
		<description>Ext Js is quite a good product but the *doc is absolutely lousy*. 

It seems that support is what Ext makes their profit from. This is why these greedy Ext people refuse to improve their doc despite many many complaints on the forum. They just don&#039;t listen.

Steeling people&#039;s time is one of the worst sins! This is what Ext does.</description>
		<content:encoded><![CDATA[<p>Ext Js is quite a good product but the *doc is absolutely lousy*. </p>
<p>It seems that support is what Ext makes their profit from. This is why these greedy Ext people refuse to improve their doc despite many many complaints on the forum. They just don&#8217;t listen.</p>
<p>Steeling people&#8217;s time is one of the worst sins! This is what Ext does.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian Guenter</title>
		<link>http://peterkellner.net/2008/11/24/domhelper-extjs-tutorial/#comment-20726</link>
		<dc:creator>Adrian Guenter</dc:creator>
		<pubDate>Thu, 19 Mar 2009 05:04:34 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2008/11/24/domhelper-extjs-tutorial/#comment-20726</guid>
		<description>Also, it is worthy to note that using the &quot;new&quot; keyword to create an array or any other native type is deprecated and not advisable as it creates an unnecessary object wrapper. The &quot;correct&quot; (accepted) method is to initialize the array using literal notation. For example:

var colorArray = [&#039;red&#039;, &#039;green&#039;, &#039;blue&#039;, &#039;orange&#039;];

This also holds true for objects, so in this case...

Instead of:

var myColor = new Object; &lt;
myColor.id = &#039;purple&#039;;
 ...
colorObject.push(myColor);

Use literal notation:

var myColor = {}; &lt;
myColor.id = &#039;purple&#039;;
 ...
colorObject.push(myColor);

The only time the &quot;new&quot; keyword is necessary and should be used is when calling a constructor function for an object (&quot;class&quot;)</description>
		<content:encoded><![CDATA[<p>Also, it is worthy to note that using the &#8220;new&#8221; keyword to create an array or any other native type is deprecated and not advisable as it creates an unnecessary object wrapper. The &#8220;correct&#8221; (accepted) method is to initialize the array using literal notation. For example:</p>
<p>var colorArray = ['red', 'green', 'blue', 'orange'];</p>
<p>This also holds true for objects, so in this case&#8230;</p>
<p>Instead of:</p>
<p>var myColor = new Object; &lt;<br />
myColor.id = &#8216;purple&#8217;;<br />
 &#8230;<br />
colorObject.push(myColor);</p>
<p>Use literal notation:</p>
<p>var myColor = {}; &lt;<br />
myColor.id = &#8216;purple&#8217;;<br />
 &#8230;<br />
colorObject.push(myColor);</p>
<p>The only time the &#8220;new&#8221; keyword is necessary and should be used is when calling a constructor function for an object (&#8220;class&#8221;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob Wilson</title>
		<link>http://peterkellner.net/2008/11/24/domhelper-extjs-tutorial/#comment-16522</link>
		<dc:creator>Rob Wilson</dc:creator>
		<pubDate>Sun, 11 Jan 2009 21:27:24 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2008/11/24/domhelper-extjs-tutorial/#comment-16522</guid>
		<description>Line 3 tells EXT where to find a special 1x1 pixel used for padding out the user interface components.  If you don&#039;t specify the location I understand that it tries to load it from the external Ext website.

Either way, you are strongly encouraged to add the location of the 1x1 pixel within your web page strucutre, so that it can load it properly.</description>
		<content:encoded><![CDATA[<p>Line 3 tells EXT where to find a special 1&#215;1 pixel used for padding out the user interface components.  If you don&#8217;t specify the location I understand that it tries to load it from the external Ext website.</p>
<p>Either way, you are strongly encouraged to add the location of the 1&#215;1 pixel within your web page strucutre, so that it can load it properly.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 34/36 queries in 0.007 seconds using disk: basic
Content Delivery Network via Amazon Web Services: S3: PetersBlogCDN.s3.amazonaws.com

Served from: peterkellner.net @ 2012-05-21 10:15:51 -->
