<?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>ModeWeb Blog &#187; Ext JS</title>
	<atom:link href="http://www.modeweb.co.uk/blog/category/ext-js/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.modeweb.co.uk/blog</link>
	<description>Web Development Tech Blog</description>
	<lastBuildDate>Sun, 25 Dec 2011 22:05:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Ext Js Get Selected ComboBox Value</title>
		<link>http://www.modeweb.co.uk/blog/2011/12/ext-js-get-selected-combobox-value/</link>
		<comments>http://www.modeweb.co.uk/blog/2011/12/ext-js-get-selected-combobox-value/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 01:21:09 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Ext JS]]></category>

		<guid isPermaLink="false">http://www.modeweb.co.uk/blog/?p=61</guid>
		<description><![CDATA[Small code snippet illustrating getting the selected value from an Ext Js ComboBox.
This example has been tested with Ext Js 4
var combo = Ext.create('Ext.form.field.ComboBox', {
&#160;&#160;...
&#160;&#160;listeners: {
&#160;&#160;&#160;'select':function(selected){ alert(selected.value); }
&#160;&#160;}
&#160;&#160;...
});

More information on ComboBox over at Sencha Web Site
]]></description>
			<content:encoded><![CDATA[<p>Small code snippet illustrating getting the selected value from an Ext Js ComboBox.</p>
<p>This example has been tested with Ext Js 4</p>
<pre>var combo = Ext.create('Ext.form.field.ComboBox', {
&nbsp;&nbsp;...
&nbsp;&nbsp;listeners: {
&nbsp;&nbsp;&nbsp;'select':function(selected){ alert(selected.value); }
&nbsp;&nbsp;}
&nbsp;&nbsp;...
});
</pre>
<p><a href="http://www.sencha.com/learn/combobox-faq/" target="_blank">More information on ComboBox over at Sencha Web Site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.modeweb.co.uk/blog/2011/12/ext-js-get-selected-combobox-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Node cannot be inserted at the specified point in the hierarchy</title>
		<link>http://www.modeweb.co.uk/blog/2011/12/node-cannot-be-inserted-at-the-specified-point-in-the-hierarchy/</link>
		<comments>http://www.modeweb.co.uk/blog/2011/12/node-cannot-be-inserted-at-the-specified-point-in-the-hierarchy/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 20:35:32 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Ext JS]]></category>

		<guid isPermaLink="false">http://www.modeweb.co.uk/blog/?p=49</guid>
		<description><![CDATA[If you get the following error when developing with Ext JS 4:
&#8220;Node cannot be inserted at the specified point in the hierarchy&#8221;
Make sure your Panel IDs are unique.
In my case, I had 2 form panels both with the same ID that I was trying to render. 
]]></description>
			<content:encoded><![CDATA[<p>If you get the following error when developing with Ext JS 4:</p>
<p>&#8220;Node cannot be inserted at the specified point in the hierarchy&#8221;</p>
<p><strong>Make sure your Panel IDs are unique.</strong></p>
<p>In my case, I had 2 form panels both with the same ID that I was trying to render. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.modeweb.co.uk/blog/2011/12/node-cannot-be-inserted-at-the-specified-point-in-the-hierarchy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

