<?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>Dae’s blog &#187; javascript</title>
	<atom:link href="http://d43.me/blog/tags/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://d43.me</link>
	<description></description>
	<lastBuildDate>Thu, 02 Feb 2012 16:30:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>ExtJs 4: password validation + random password button</title>
		<link>http://d43.me/blog/1138/extjs-4-password-validation-random-password-button/</link>
		<comments>http://d43.me/blog/1138/extjs-4-password-validation-random-password-button/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 16:20:22 +0000</pubDate>
		<dc:creator>Dae</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[extjs]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://d43.me/?p=1138</guid>
		<description><![CDATA[This one is simple. Feel free to replace the regular expression with your own. Mine is very basic. Ext.apply(Ext.form.field.VTypes, { password: function(val, field) { if (/^[a-z0-9]+$/i.test(val)) { return true; } }, passwordText: 'Password may only contain letters and numbers.' }); &#8230; <a href="http://d43.me/blog/1138/extjs-4-password-validation-random-password-button/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://d43.me/blog/1138/extjs-4-password-validation-random-password-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ExtJs 4: dealing with messages (and errors) from an Ajax or REST proxy</title>
		<link>http://d43.me/blog/1115/extjs-4-dealing-with-messages-and-errors-from-an-ajax-or-rest-proxy/</link>
		<comments>http://d43.me/blog/1115/extjs-4-dealing-with-messages-and-errors-from-an-ajax-or-rest-proxy/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 13:31:00 +0000</pubDate>
		<dc:creator>Dae</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[extjs]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://d43.me/?p=1115</guid>
		<description><![CDATA[When sending Ajax or REST requests, a proxy of ExtJs 4 typically expects a response with the following parameters: data, success and message. The message parameter is optional, but it may come in handy when you want to show the &#8230; <a href="http://d43.me/blog/1115/extjs-4-dealing-with-messages-and-errors-from-an-ajax-or-rest-proxy/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://d43.me/blog/1115/extjs-4-dealing-with-messages-and-errors-from-an-ajax-or-rest-proxy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ExtJs 4: submit form on enter</title>
		<link>http://d43.me/blog/1103/extjs-4-submit-form-on-enter/</link>
		<comments>http://d43.me/blog/1103/extjs-4-submit-form-on-enter/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 13:01:19 +0000</pubDate>
		<dc:creator>Dae</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[extjs]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://d43.me/?p=1103</guid>
		<description><![CDATA[It&#8217;s a shame that such a powerful framework as ExtJs 4 does not have this feature built-in. function submitOnEnter(field, event) { if (event.getKey() == event.ENTER) { field.up('form').getForm().submit(); } } var form = Ext.create('Ext.form.Panel', { ... defaults: { ... listeners: { &#8230; <a href="http://d43.me/blog/1103/extjs-4-submit-form-on-enter/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://d43.me/blog/1103/extjs-4-submit-form-on-enter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ExtJs 4 proxy calls &#8216;Create&#8217; instead of &#8216;Update&#8217;</title>
		<link>http://d43.me/blog/1097/extjs-4-proxy-calls-create-instead-of-update/</link>
		<comments>http://d43.me/blog/1097/extjs-4-proxy-calls-create-instead-of-update/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 11:46:26 +0000</pubDate>
		<dc:creator>Dae</dc:creator>
				<category><![CDATA[Solutions]]></category>
		<category><![CDATA[extjs]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://d43.me/?p=1097</guid>
		<description><![CDATA[ExtJS 4: Proxy Calling ‘Create’ Instead of ‘Update’ When Saving Record. I thought I should promote the blog post which helped me tackle this small but annoying problem, which wasn&#8217;t even related to editable grid as I had thought initially.]]></description>
		<wfw:commentRss>http://d43.me/blog/1097/extjs-4-proxy-calls-create-instead-of-update/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Demo of Highslide gallery with Ajax URLs</title>
		<link>http://d43.me/blog/866/demo-of-highslide-gallery-with-ajax-urls/</link>
		<comments>http://d43.me/blog/866/demo-of-highslide-gallery-with-ajax-urls/#comments</comments>
		<pubDate>Fri, 29 Jul 2011 10:12:23 +0000</pubDate>
		<dc:creator>Dae</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[highslide]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://dae.cyberic.eu/?p=866</guid>
		<description><![CDATA[Highslide is an excellent JavaScript library for making galleries, but there&#8217;s one feature I was really missing in it: Ajax URLs or URLs which change as you browse images on the page. Thankfully developers provided extensive API with the help &#8230; <a href="http://d43.me/blog/866/demo-of-highslide-gallery-with-ajax-urls/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://d43.me/blog/866/demo-of-highslide-gallery-with-ajax-urls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add an &lt;option&gt; to a &lt;select&gt; using Mootools</title>
		<link>http://d43.me/blog/19/add-an-option-to-a-select-using-mootools/</link>
		<comments>http://d43.me/blog/19/add-an-option-to-a-select-using-mootools/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 17:42:46 +0000</pubDate>
		<dc:creator>Dae</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mootools]]></category>

		<guid isPermaLink="false">http://dae.cyberic.eu/?p=19</guid>
		<description><![CDATA[var newoption = new Option("option html", "option value"); try { $('myselect').add(newoption, null); } catch (err) { $('myselect').add(newoption); } To select the newly created option: newoption.setProperty('selected', 'selected');]]></description>
		<wfw:commentRss>http://d43.me/blog/19/add-an-option-to-a-select-using-mootools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

Served from: d43.me @ 2012-02-05 22:41:05 -->
