<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>mobile and gis dev notes &#187; ExtJS</title>
	<atom:link href="http:///wordpress/category/javascript/extjs/feed/" rel="self" type="application/rss+xml" />
	<link>/wordpress</link>
	<description>by rupert</description>
	<lastBuildDate>Sun, 22 Jan 2012 04:34:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>ExtJS: Window Snippet</title>
		<link>/wordpress/2008/03/extjs-window-snippet/</link>
		<comments>/wordpress/2008/03/extjs-window-snippet/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 23:03:19 +0000</pubDate>
		<dc:creator>rupert</dc:creator>
				<category><![CDATA[ExtJS]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.gisnotes.com/wordpress/index.php/2008/03/27/extjs-window-snippet/</guid>
		<description><![CDATA[Just a quick example on creating floatable windows Note that renderTo: &#8216;document.body&#8217; would result in an error, use renderTo: document.body instead var config = { id: 'win', title:'Detail', width:600, height:300, shim:false, animCollapse:false, border:false, layout: 'fit', minimizable: true, maximizable: true, closable: false, renderTo: document.body, left: 620, top: 420, constrain: true }; window1 = new Ext.Window(config); window1.setPosition(0, [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick example on creating floatable windows</p>
<p>Note that <em>renderTo: &#8216;document.body&#8217;</em> would result in an error, use renderTo: document.body instead</p>
<p><script language="javascript">
		var config = {
		    id: 'win',
		    title:'Detail',
		    width:600,
		    height:300,
		    shim:false,
		    animCollapse:false,
		    border:false,
		    layout: 'fit',
		    minimizable: true,
		    maximizable: true,
		    closable: false,
		    renderTo: document.body,
		    left: 620,
		    top: 420,
		    constrain: true
		};
		window1 = new Ext.Window(config);
		window1.setPosition(0, 0);
		window1.show();
</script></p>
]]></content:encoded>
			<wfw:commentRss>/wordpress/2008/03/extjs-window-snippet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aptana Impressions</title>
		<link>/wordpress/2008/03/aptana-impressions/</link>
		<comments>/wordpress/2008/03/aptana-impressions/#comments</comments>
		<pubDate>Sat, 15 Mar 2008 17:25:01 +0000</pubDate>
		<dc:creator>rupert</dc:creator>
				<category><![CDATA[ExtJS]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[aptana]]></category>

		<guid isPermaLink="false">http://www.gisnotes.com/wordpress/index.php/2008/03/16/aptana-impressions/</guid>
		<description><![CDATA[I recently downloaded Aptana Studio 1.1 Community Edition and have been using it mostly for my Javascript/ColdFusion development. Intellisense for ExtJS by using com.extjs.ext.2.0_1.0.0.00000.jar from the ExtJS blog. Umm, I am hoping someday OpenLayers can provide a similar jar file to provide code assist. I like the fact that it could clearly display an outline [...]]]></description>
			<content:encoded><![CDATA[<p>I recently downloaded Aptana Studio 1.1 Community Edition and have been using it mostly for my Javascript/ColdFusion development.</p>
<ul>
<li>Intellisense for ExtJS by using <a href="http://orsox.mocis.at/download.php?view.1">com.extjs.ext.2.0_1.0.0.00000.jar</a> from the <a href="http://extjs.com/blog/2008/02/01/ides-plugins-and-tools-for-ext-js-20/">ExtJS blog.</a> Umm, I am hoping someday OpenLayers can provide a similar jar file to <a href="http://www.aptana.com/docs/index.php/Displaying_Code_Assist">provide code assist.</a></li>
<li>I like the fact that it could clearly display an outline of my javascript objects but <em>sometimes</em> not for all.</li>
</ul>
<p>But one of the major problems I encountered was the startup. Sometimes, for some unknown reason, Aptana cannot start using the executable it provided during the install. However, I was able to weed that problem out by instead launching it from startup.jar. All of these is documented from <a href="http://support.aptana.com/asap/browse/STU-1303">Aptana&#8217;s JIRA ticket</a>.</p>
<p>1. Downloaded and install <a href="http://www.aptana.com/">Aptana</a></p>
<p>2. Watched <a href="http://www.aptana.tv/movies/aptana_overview/Overview.html">Aptana TV Overview</a></p>
<p>3. Installed cfeclipse <a href="http://www.cfeclipse.org/update">http://www.cfeclipse.org/update</a></p>
<p>4. Installed viPlugin <a href="http://satokar.com/">http://satokar.com/</a> (Note that the viPlugin would not work with files = *.html)</p>
<p>5. Added the extjs2.0 code assist</p>
]]></content:encoded>
			<wfw:commentRss>/wordpress/2008/03/aptana-impressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ExtJS and OpenLayers</title>
		<link>/wordpress/2008/02/extjs-and-openlayers/</link>
		<comments>/wordpress/2008/02/extjs-and-openlayers/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 00:45:18 +0000</pubDate>
		<dc:creator>rupert</dc:creator>
				<category><![CDATA[ExtJS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[openlayers]]></category>

		<guid isPermaLink="false">/wordpress/index.php/2008/02/19/extjs-and-openlayers/</guid>
		<description><![CDATA[It seems that ExtJS and OpenLayers does not blend well together. One of the bug biters that hit me was the way ExtJS was handling arrays. It would be wise for OpenLayers to be agnostic of these frameworks. for&#40; var i in blocks &#41; should be transformed to for&#40; var i = 0; i &#38;lt; [...]]]></description>
			<content:encoded><![CDATA[<p>It seems that ExtJS and OpenLayers does not blend well together. One of the bug biters that hit me was the way ExtJS was handling arrays.  It would be wise for OpenLayers to be agnostic of these frameworks.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #000066; font-weight: bold;">for</span><span style="color: #009900;">&#40;</span> <span style="color: #003366; font-weight: bold;">var</span> i <span style="color: #000066; font-weight: bold;">in</span> blocks <span style="color: #009900;">&#41;</span> should be transformed to <span style="color: #000066; font-weight: bold;">for</span><span style="color: #009900;">&#40;</span> <span style="color: #003366; font-weight: bold;">var</span> i <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span> i <span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span> blocks.<span style="color: #660066;">length</span><span style="color: #339933;">;</span> i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span></pre></div></div>

<p>I believe <a href="http://trac.openlayers.org/ticket/1362">OpenLayers Ticket#1362</a> closely resembles this bug.  Thanks to pgiraud for pointing me to the right direction.</p>
]]></content:encoded>
			<wfw:commentRss>/wordpress/2008/02/extjs-and-openlayers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ExtJS QuickTip: Display other levels of a JSON object in a Grid</title>
		<link>/wordpress/2008/02/extjs-quicktip-display-other-levels-of-a-json-object-in-a-grid/</link>
		<comments>/wordpress/2008/02/extjs-quicktip-display-other-levels-of-a-json-object-in-a-grid/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 15:08:39 +0000</pubDate>
		<dc:creator>rupert</dc:creator>
				<category><![CDATA[ExtJS]]></category>
		<category><![CDATA[GeoJSON]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">/wordpress/index.php/2008/02/18/extjs-quicktip-display-other-levels-of-a-json-object-in-a-grid/</guid>
		<description><![CDATA[You can display an item anywhere in a JSON heirarchy/level in a Grid by using dot notation. I am beginning to like JSON as it is simply practical and amazing. To fully understand, please see geometry.type as an example. &#123; &#34;type&#34;: &#34;FeatureCollection&#34;, &#34;recordcount&#34;:6, &#34;features&#34;: &#91; &#123; &#34;type&#34;:&#34;Feature&#34;, &#34;geometry&#34;:&#123; &#34;type&#34;: &#34;MULTIPOLYGON&#34;, &#34;coordinates&#34;: &#91;&#91;&#91;&#91;116.368603,39.944314&#93;,&#91;116.381069,39.94464&#93;,&#91;116.388765,39.940265&#93;,&#91;116.390376,39.939124&#93;,&#91;116.391203,39.934381&#93;,&#91;116.391784,39.930743&#93;,&#91;116.387262,39.930638&#93;,&#91;116.387507,39.93289&#93;,&#91;116.383032,39.932688&#93;,&#91;116.382581,39.933204&#93;,&#91;116.37197,39.940531&#93;,&#91;116.368603,39.944314&#93;&#93;&#93;&#93; &#125;, &#34;gid&#34;:16055, &#34;cn_name&#34;:&#34;后海&#34;, [...]]]></description>
			<content:encoded><![CDATA[<p>You can display an item anywhere in a JSON heirarchy/level in a Grid by using <strong>dot notation</strong>. I am beginning to like JSON as it is simply practical and amazing. To fully understand, please see <em>geometry.type</em> as an example.<span id="more-146"></span></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #009900;">&#123;</span> <span style="color: #3366CC;">&quot;type&quot;</span><span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;FeatureCollection&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;recordcount&quot;</span><span style="color: #339933;">:</span><span style="color: #CC0000;">6</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;features&quot;</span><span style="color: #339933;">:</span> <span style="color: #009900;">&#91;</span> <span style="color: #009900;">&#123;</span> <span style="color: #3366CC;">&quot;type&quot;</span><span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;Feature&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;geometry&quot;</span><span style="color: #339933;">:</span><span style="color: #009900;">&#123;</span> <span style="color: #3366CC;">&quot;type&quot;</span><span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;MULTIPOLYGON&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;coordinates&quot;</span><span style="color: #339933;">:</span> <span style="color: #009900;">&#91;</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">116.368603</span><span style="color: #339933;">,</span><span style="color: #CC0000;">39.944314</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">116.381069</span><span style="color: #339933;">,</span><span style="color: #CC0000;">39.94464</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">116.388765</span><span style="color: #339933;">,</span><span style="color: #CC0000;">39.940265</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">116.390376</span><span style="color: #339933;">,</span><span style="color: #CC0000;">39.939124</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">116.391203</span><span style="color: #339933;">,</span><span style="color: #CC0000;">39.934381</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">116.391784</span><span style="color: #339933;">,</span><span style="color: #CC0000;">39.930743</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">116.387262</span><span style="color: #339933;">,</span><span style="color: #CC0000;">39.930638</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">116.387507</span><span style="color: #339933;">,</span><span style="color: #CC0000;">39.93289</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">116.383032</span><span style="color: #339933;">,</span><span style="color: #CC0000;">39.932688</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">116.382581</span><span style="color: #339933;">,</span><span style="color: #CC0000;">39.933204</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">116.37197</span><span style="color: #339933;">,</span><span style="color: #CC0000;">39.940531</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">116.368603</span><span style="color: #339933;">,</span><span style="color: #CC0000;">39.944314</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;gid&quot;</span><span style="color: #339933;">:</span><span style="color: #CC0000;">16055</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;cn_name&quot;</span><span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;后海&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;py_name&quot;</span><span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;hou hai&quot;</span> <span style="color: #009900;">&#125;</span> <span style="color: #339933;">,</span> <span style="color: #009900;">&#123;</span> <span style="color: #3366CC;">&quot;type&quot;</span><span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;Feature&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;geometry&quot;</span><span style="color: #339933;">:</span><span style="color: #009900;">&#123;</span> <span style="color: #3366CC;">&quot;type&quot;</span><span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;MULTIPOLYGON&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;coordinates&quot;</span><span style="color: #339933;">:</span> ....<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Here is the DataStore&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">cs.<span style="color: #660066;">GridPlace</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
    <span style="color: #003366; font-weight: bold;">var</span> _placeDataStore <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Ext.<span style="color: #660066;">data</span>.<span style="color: #660066;">Store</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
        <span style="color: #006600; font-style: italic;">// create reader that reads the Topic records</span>
        reader<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">new</span> Ext.<span style="color: #660066;">data</span>.<span style="color: #660066;">JsonReader</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
            root<span style="color: #339933;">:</span> <span style="color: #3366CC;">'features'</span><span style="color: #339933;">,</span>
            totalProperty<span style="color: #339933;">:</span> <span style="color: #3366CC;">'recordcount'</span><span style="color: #339933;">,</span>
            id<span style="color: #339933;">:</span> <span style="color: #3366CC;">'gid'</span><span style="color: #339933;">,</span>
            fields<span style="color: #339933;">:</span> <span style="color: #009900;">&#91;</span>
                <span style="color: #3366CC;">'cn_name'</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'py_name'</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'geometry.type'</span>
            <span style="color: #009900;">&#93;</span>
        <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #006600; font-style: italic;">// the column model has information about grid columns</span>
    <span style="color: #006600; font-style: italic;">// dataIndex maps the column to the specific data field in</span>
    <span style="color: #006600; font-style: italic;">// the data store</span>
    <span style="color: #003366; font-weight: bold;">var</span> cm <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Ext.<span style="color: #660066;">grid</span>.<span style="color: #660066;">ColumnModel</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#123;</span>
           id<span style="color: #339933;">:</span> <span style="color: #3366CC;">'gid'</span><span style="color: #339933;">,</span> <span style="color: #006600; font-style: italic;">// id assigned so we can apply custom css (e.g. .x-grid-col-topic b { color:#333 })</span>
           header<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;CN_NAME&quot;</span><span style="color: #339933;">,</span>
           width<span style="color: #339933;">:</span> <span style="color: #CC0000;">100</span><span style="color: #339933;">,</span>
           dataIndex<span style="color: #339933;">:</span> <span style="color: #3366CC;">'cn_name'</span>
        <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span><span style="color: #009900;">&#123;</span>
           id<span style="color: #339933;">:</span> <span style="color: #3366CC;">'gid'</span><span style="color: #339933;">,</span> <span style="color: #006600; font-style: italic;">// id assigned so we can apply custom css (e.g. .x-grid-col-topic b { color:#333 })</span>
           header<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;PY_NAME&quot;</span><span style="color: #339933;">,</span>
           width<span style="color: #339933;">:</span> <span style="color: #CC0000;">100</span><span style="color: #339933;">,</span>
           dataIndex<span style="color: #339933;">:</span> <span style="color: #3366CC;">'py_name'</span>
        <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span><span style="color: #009900;">&#123;</span>
           id<span style="color: #339933;">:</span> <span style="color: #3366CC;">'gid'</span><span style="color: #339933;">,</span> <span style="color: #006600; font-style: italic;">// id assigned so we can apply custom css (e.g. .x-grid-col-topic b { color:#333 })</span>
           header<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;GEOMTYPE&quot;</span><span style="color: #339933;">,</span>
           width<span style="color: #339933;">:</span> <span style="color: #CC0000;">100</span><span style="color: #339933;">,</span>
           dataIndex<span style="color: #339933;">:</span> <span style="color: #3366CC;">'geometry.type'</span>
        <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>/wordpress/2008/02/extjs-quicktip-display-other-levels-of-a-json-object-in-a-grid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ExtJS Notes</title>
		<link>/wordpress/2008/01/extjs-notes/</link>
		<comments>/wordpress/2008/01/extjs-notes/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 16:19:03 +0000</pubDate>
		<dc:creator>rupert</dc:creator>
				<category><![CDATA[ExtJS]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">/wordpress/?p=134</guid>
		<description><![CDATA[1. How to test Ext from the extjs/docs? Ext.get(document.body).update(' &#8216;) 2. Node cannot be inserted at the specified point in the hierarchy code: 3 Answer: Possible invalid nesting of id elements within a panel or div. Check if id is the same with contentEl in a panel. For example: //in my javascript Layout.js &#123; id: [...]]]></description>
			<content:encoded><![CDATA[<p><strong>1. How to test Ext from the extjs/docs?</strong><br />
<code>Ext.get(document.body).update(' </code></p>
<p>&#8216;)</p>
<p><strong>2. Node cannot be inserted at the specified point in the hierarchy  code: 3</strong><br />
<strong>Answer:</strong> Possible invalid nesting of id elements within a panel or div. Check if id is the same with contentEl in a panel. For example:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">//in my javascript Layout.js</span>
<span style="color: #009900;">&#123;</span>
    id<span style="color: #339933;">:</span> <span style="color: #3366CC;">'pnlPOIList'</span><span style="color: #339933;">,</span> <span style="color: #006600; font-style: italic;">//should be renamed to foo-pnlPOIList just to distinguish it from pnlPOIList</span>
    region<span style="color: #339933;">:</span> <span style="color: #3366CC;">'west'</span><span style="color: #339933;">,</span>
    contentEl<span style="color: #339933;">:</span> <span style="color: #3366CC;">'pnlPOIList'</span><span style="color: #339933;">,</span>
    title<span style="color: #339933;">:</span> <span style="color: #3366CC;">'POIList'</span><span style="color: #339933;">,</span>
    width<span style="color: #339933;">:</span> <span style="color: #CC0000;">300</span><span style="color: #339933;">,</span>
    collapsible<span style="color: #339933;">:</span><span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">,</span>
    floatable<span style="color: #339933;">:</span><span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">,</span>
    autoScroll<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">true</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #006600; font-style: italic;">//in my index.html</span>
<span style="color: #339933;">&lt;</span>p id<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;east&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>p<span style="color: #339933;">&gt;&lt;</span>p id<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;pnlMoreInformation&quot;</span><span style="color: #339933;">&gt;&lt;</span>cfinclude template<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;pnlMoreInformation.cfm&quot;</span><span style="color: #339933;">&gt;&lt;/</span>cfinclude<span style="color: #339933;">&gt;&lt;/</span>p<span style="color: #339933;">&gt;</span></pre></div></div>

<p><strong>3. A has no properties</strong><br />
<em><code>Ext.Container=Ext.extend(Ext.BoxComponent,{autoDestroy:true,defaultType:"panel",...</code></em><br />
<strong>Answer:</strong>Check the object inside the definition of an Ext Component. It may be a different object.</p>
<p><strong>4. How to debug ext app on IE?</strong><br />
<strong>Answer:</strong> This should be a javascript post instead of Ext but I&#8217;m posting it anyway. When troubleshooting javascript in IE, be careful with <em>open-ended definition with commas</em>. Firefox might be forgiving but not IE.  Meaning&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">	<span style="color: #003366; font-weight: bold;">var</span> config <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span>
			id<span style="color: #339933;">:</span> taskbarButtonID<span style="color: #339933;">,</span>
			text<span style="color: #339933;">:</span> taskbarText<span style="color: #339933;">,</span>
			iconCls<span style="color: #339933;">:</span> iconstyle<span style="color: #339933;">,</span>
			handler<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
				<span style="color: #003366; font-weight: bold;">var</span> mywindow <span style="color: #339933;">=</span> Ext.<span style="color: #660066;">getCmp</span><span style="color: #009900;">&#40;</span>windowID<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				mywindow.<span style="color: #660066;">setVisible</span><span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span>mywindow.<span style="color: #660066;">isVisible</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
		<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span></pre></div></div>

<p><strong><a href="http://www.spket.com/demos/js.html">5. Javascript Plugin for Eclipse</a></strong>. For more information, please visit <a href="http://extjs.com/blog/2008/02/01/ides-plugins-and-tools-for-ext-js-20/">ExtJS Blog: IDEs, plugins and tools for Ext JS 2.0 </a></p>
]]></content:encoded>
			<wfw:commentRss>/wordpress/2008/01/extjs-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

