<?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>American Butifarra &#187; Framework</title> <atom:link href="http://claude.betancourt.us/topic/framework-technology/feed/" rel="self" type="application/rss+xml" /><link>http://claude.betancourt.us</link> <description>Claude Betancourt&#039;s Personal Blog</description> <lastBuildDate>Fri, 16 Dec 2011 02:43:25 +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 ComboBox Hidden Field Issues</title><link>http://claude.betancourt.us/extjs-combobox-hidden-field-issues/</link> <comments>http://claude.betancourt.us/extjs-combobox-hidden-field-issues/#comments</comments> <pubDate>Tue, 09 Mar 2010 18:57:26 +0000</pubDate> <dc:creator>Claude</dc:creator> <category><![CDATA[Ext JS]]></category> <category><![CDATA[Framework]]></category> <category><![CDATA[How-To]]></category> <category><![CDATA[JavaScript]]></category> <category><![CDATA[Tutorials]]></category> <category><![CDATA[Ext JS 3]]></category><guid isPermaLink="false">http://claude.betancourt.us/?p=721</guid> <description><![CDATA[Despite looking like a typical select box, Ext.form.ComboBox does not behave exactly as you would expect. It submits the display text instead of the selected option's value. This post provides a solution to this problem. <a href="http://claude.betancourt.us/extjs-combobox-hidden-field-issues/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p class="alert">This post refers to version 3.x of the Ext-JS framework.</p><p>Despite looking like a typical select box, <a href="http://www.extjs.com/deploy/dev/docs/?class=Ext.form.ComboBox"><strong>Ext.form.ComboBox</strong></a> doesn&#8217;t behave exactly as you would expect since it submits the display text instead of the selected option&#8217;s value. The documentation states:</p><blockquote><p>A ComboBox works in a similar manner to a traditional HTML &lt;select&gt; field. The difference is that to submit the valueField, you must specify a hiddenName to create a hidden input field to hold the value of the valueField. The displayField is shown in the text field which is named according to the name.</p></blockquote><pre class="brush: jscript; highlight: [5,6]; title: ; notranslate">
this.add([
	{
		xtype: 'combo',
		name: 'suffix',
		hiddenName: 'suffixId', // post this name
		hiddenValue: 0, // default value
		fieldLabel: 'Suffix',
		mode: 'local',
		store: this.suffixStore,
		valueField: 'key',
		displayField: 'display',
		triggerAction: 'all',
		forceSelection: true,
		allowBlank: true
	}
]);
</pre><p>Adding a <strong>hiddenName</strong> and a default value in <strong>hiddenValue</strong> does the trick, the default value (0) is set in the hidden field until a user chooses a different value. Unfortunately this breaks when the ComboBox is set to allow blanks and the user tabs over the field. When this happens, the hiddenValue is set to a null string and the user is never prompted to select a value.</p><p>Upon form submission, the hiddenField (<strong>suffixId</strong>) will be set to neither the default nor a valid value.</p><p>One solution is to listen for the <strong>focus</strong> and <strong>blur</strong> events to reset the value of the hidden field when it has been set to a null string.</p><pre class="brush: jscript; highlight: [15,16,17,18,19]; title: ; notranslate">
this.add([
	{
		xtype: 'combo',
		name: 'suffix',
		hiddenName: 'suffixId',
		hiddenValue: 0,
		fieldLabel: 'Suffix',
		mode: 'local',
		store: this.suffixStore,
		valueField: 'key',
		displayField: 'display',
		triggerAction: 'all',
		forceSelection: true,
		allowBlank: true,
		listeners: {
			'focus': this.handleSuffixChange,
			'blur': this.handleSuffixChange,
			scope: this
		}
	}
]);

handleSuffixChange: function(field) {
	if (field.value==='') {
		field.hiddenField.value = '0';
	}
}
</pre><p>Upon form submission you will be guaranteed a valid value, which is especially beneficial if you&#8217;re using the form values to populate a server side bean object.</p> ]]></content:encoded> <wfw:commentRss>http://claude.betancourt.us/extjs-combobox-hidden-field-issues/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Introduction to Ext.Direct</title><link>http://claude.betancourt.us/introduction-to-extdirect/</link> <comments>http://claude.betancourt.us/introduction-to-extdirect/#comments</comments> <pubDate>Wed, 13 May 2009 14:09:52 +0000</pubDate> <dc:creator>Claude</dc:creator> <category><![CDATA[Articles]]></category> <category><![CDATA[Ext JS]]></category> <category><![CDATA[Framework]]></category> <category><![CDATA[JavaScript]]></category> <category><![CDATA[Platform]]></category> <category><![CDATA[Protocol]]></category> <category><![CDATA[.NET]]></category> <category><![CDATA[ColdFusion]]></category> <category><![CDATA[Java]]></category> <category><![CDATA[Library]]></category> <category><![CDATA[Perl]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[Ruby]]></category><guid isPermaLink="false">http://claude.betancourt.us/?p=581</guid> <description><![CDATA[Evan Trimboli of the Ext-JS team just published an article describing Ext.Direct, a remoting API that is part of Ext 3.0. <a href="http://claude.betancourt.us/introduction-to-extdirect/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><span class="drop_cap">E</span>van Trimboli of the Ext-JS team just published an article describing Ext.Direct, a remoting API that is part of Ext 3.0. The team has created a <a href="http://extjs.com/products/extjs/direct.php">remoting specification</a> that you can use to implement the server-side stack of your choice.</p><p>Details about server-specific implementations already being maintained <a href="http://extjs.com/forum/showthread.php?t=67992">can be found here</a>.</p><blockquote><p> Ext.Direct is a new package in Ext JS 3.0 that helps alleviate many of these issues by streamlining communication between your client and server. When using Ext.Direct, you can expect to write 30% less code by eliminating common boiler plate code.</p><p>The Ext.direct namespace introduces several new classes for a close integration with the server-side. New classes have also been added to the Ext.data namespace for working with Ext.data.Stores which are backed by data from an Ext.Direct method.</p><p>Ext.Direct uses a provider architecture, where one or more providers are used to transport data to and from the server. There are several providers that exist in the core at the moment, for example a JsonProvider for simple JSON operations and a PollingProvider for repeated requests. One of the most powerful providers is the RemotingProvider.</p></blockquote><p><a href="http://extjs.com/blog/2009/05/13/introducing-ext-direct/">Read the rest here</a>.</p> ]]></content:encoded> <wfw:commentRss>http://claude.betancourt.us/introduction-to-extdirect/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Thesis 1.5 is Now Available</title><link>http://claude.betancourt.us/thesis-15-is-now-available/</link> <comments>http://claude.betancourt.us/thesis-15-is-now-available/#comments</comments> <pubDate>Thu, 30 Apr 2009 02:07:47 +0000</pubDate> <dc:creator>Claude</dc:creator> <category><![CDATA[Framework]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[SEO]]></category> <category><![CDATA[Theme]]></category> <category><![CDATA[Thes]]></category> <category><![CDATA[Thesis]]></category> <category><![CDATA[ThesisWP]]></category> <category><![CDATA[Wordpress]]></category><guid isPermaLink="false">http://claude.betancourt.us/?p=487</guid> <description><![CDATA[Thesis 1.5 is available now, and it boasts completely rebuilt options pages as well as some new design options that are quite literally going to revolutionize the way we build websites. <a href="http://claude.betancourt.us/thesis-15-is-now-available/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><a href="http://claude.betancourt.us/r/thesis-detail.php"><img class="aligncenter frame" src="http://cdn.betancourt.us/claude/images/ads/thesis-theme-tap.jpg" /></a></p><p><span class="drop_cap">T</span>he prolific team at DIY Themes has released the latest version of <strong><a href="http://claude.betancourt.us/r/thesis-detail.php">Thesis</a></strong>, the best theme/framework for WordPress. See <a href="http://claude.betancourt.us/r/thesis-testimonials.php"><strong>what customers are saying</strong></a> about their Thesis experience!</p><p><img style="border:0" src="https://diythemes.com/aff/scripts/imp.php?a_aid=beancentral&amp;a_bid=34655204" width="1" height="1" alt="" /></p> ]]></content:encoded> <wfw:commentRss>http://claude.betancourt.us/thesis-15-is-now-available/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>FREE Thesis Template: Strange Little Town</title><link>http://claude.betancourt.us/thesis-template-strange-little-town/</link> <comments>http://claude.betancourt.us/thesis-template-strange-little-town/#comments</comments> <pubDate>Thu, 12 Feb 2009 22:04:15 +0000</pubDate> <dc:creator>Claude</dc:creator> <category><![CDATA[Framework]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[FREE]]></category> <category><![CDATA[Theme]]></category> <category><![CDATA[Thesis]]></category> <category><![CDATA[ThesisWP]]></category> <category><![CDATA[Wordpress]]></category><guid isPermaLink="false">http://claude.betancourt.us/?p=337</guid> <description><![CDATA[This template is based on a WordPress theme by Minmin. Unfortunately the original theme doesn't behave uniformly across multiple browsers. Don't worry, that's where Thesis comes in. <a href="http://claude.betancourt.us/thesis-template-strange-little-town/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><img class="aligncenter frame" src="http://d1otluelaswtp.cloudfront.net/wp-content/uploads/2009/02/strange-little-town.png?2ce803" alt="Strange Little Town" title="Strange Little Town" /></p><p><span class="drop_cap">T</span>his template is based on a WordPress theme by <a href="http://magical.nu/about/">Minmin</a>. Unfortunately the original theme doesn&#8217;t behave uniformly across multiple browsers. Don&#8217;t worry, that&#8217;s where <a href="http://claude.betancourt.us/r/thesis-detail.php">Thesis</a> comes in.</p><h3>How Much?</h3><p>It&#8217;s FREE. All I ask is that you leave the attribution link in the footer intact to link back to this site.</p><p>If you who already own <a href="http://claude.betancourt.us/r/thesis-detail.php">Thesis</a>, download the template (from <a href="http://svn.betancourt.us/public/wordpress/theme/thesis-strange-little-town/">SVN</a> or as a <a href="/templates/thesis-strange-little-town.zip?2ce803">zip file</a>) and replace your custom folder with its contents. For more details see the README.txt file part of the distribution.</p><h3>Don&#8217;t Know Enough About Thesis?</h3><p><a href="http://claude.betancourt.us/r/thesis-detail.php"><strong>Learn all about it here</strong></a> then click &#8220;Get Thesis&#8221; to buy it today.</p> ]]></content:encoded> <wfw:commentRss>http://claude.betancourt.us/thesis-template-strange-little-town/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Ext-JS to Provide Free CDN Hosting for its Framework</title><link>http://claude.betancourt.us/ext-js-to-provide-free-cdn-hosting-for-its-framework/</link> <comments>http://claude.betancourt.us/ext-js-to-provide-free-cdn-hosting-for-its-framework/#comments</comments> <pubDate>Wed, 19 Nov 2008 04:32:28 +0000</pubDate> <dc:creator>Claude</dc:creator> <category><![CDATA[Ext JS]]></category> <category><![CDATA[Framework]]></category> <category><![CDATA[JavaScript]]></category> <category><![CDATA[Platform]]></category> <category><![CDATA[Performance]]></category><guid isPermaLink="false">http://claude.betancourt.us/?p=234</guid> <description><![CDATA[This is great news for the Ext-JS community. Here is why you should take advantage of a content delivery network. We are pleased to announce that Ext has partnered with CacheFly, a global content network, to provide free CDN hosting &#8230; <a href="http://claude.betancourt.us/ext-js-to-provide-free-cdn-hosting-for-its-framework/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><span class="drop_cap">T</span>his is great news for the Ext-JS community. <a href="http://developer.yahoo.com/performance/rules.html#cdn"><strong>Here is why</strong></a> you should take advantage of a content delivery network.</p><blockquote><p>We are pleased to announce that Ext has partnered with CacheFly, a global content network, to provide free CDN hosting for the Ext JS framework. Cachefly’s globally distributed network and aggressive caching accelerate the delivery of web content like JavaScript and CSS, making for an even faster Ext experience.</p><p>The Ext CDN also provides the ability to create your own custom builds using Ext’s Build It! tool, and host them on the CDN. The custom builder implements features to intelligently cache your component selections, adapter, and Ext version to create a unique custom build. These custom builds are cached across sessions and used by anyone who makes the same selections as you have &#8211; allowing for caching of custom builds across applications to fully realize the benefits of the CDN.</p></blockquote> ]]></content:encoded> <wfw:commentRss>http://claude.betancourt.us/ext-js-to-provide-free-cdn-hosting-for-its-framework/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Intro to jQuery by John Resig</title><link>http://claude.betancourt.us/intro-to-jquery-by-john-resig/</link> <comments>http://claude.betancourt.us/intro-to-jquery-by-john-resig/#comments</comments> <pubDate>Wed, 12 Nov 2008 18:07:54 +0000</pubDate> <dc:creator>Claude</dc:creator> <category><![CDATA[Framework]]></category> <category><![CDATA[JavaScript]]></category> <category><![CDATA[jQuery]]></category> <category><![CDATA[Presentation]]></category> <category><![CDATA[Screencast]]></category> <category><![CDATA[Video]]></category><guid isPermaLink="false">http://claude.betancourt.us/?p=224</guid> <description><![CDATA[Here is John Resig&#8217;s presentation of jQuery from this year&#8217;s The Ajax Experience. Learn how to develop a number of common-case widgets, handle DOM, event, animations and Ajax interactions.]]></description> <content:encoded><![CDATA[<p><span class="drop_cap">H</span>ere is John Resig&#8217;s presentation of jQuery from this year&#8217;s The Ajax Experience. Learn how to develop a number of common-case widgets, handle DOM, event, animations and Ajax interactions.</p><p><span id="more-224"></span></p><div align="center"><embed src="http://services.brightcove.com/services/viewer/federated_f8/1596744118" bgcolor="#FFFFFF" flashVars="videoId=1827940073&#038;playerId=1596744118&#038;viewerSecureGatewayURL=https://console.brightcove.com/services/amfgateway&#038;servicesURL=http://services.brightcove.com/services&#038;cdnURL=http://admin.brightcove.com&#038;domain=embed&#038;autoStart=false&#038;" base="http://admin.brightcove.com" name="flashObj" width="486" height="412" seamlesstabbing="false" type="application/x-shockwave-flash" swLiveConnect="true" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed></div> ]]></content:encoded> <wfw:commentRss>http://claude.betancourt.us/intro-to-jquery-by-john-resig/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Ext-JS 3.0 Showcases Visual Designer, Updates Roadmap</title><link>http://claude.betancourt.us/ext-js-30-showcases-visual-designer-updates-roadmap/</link> <comments>http://claude.betancourt.us/ext-js-30-showcases-visual-designer-updates-roadmap/#comments</comments> <pubDate>Tue, 11 Nov 2008 19:55:59 +0000</pubDate> <dc:creator>Claude</dc:creator> <category><![CDATA[Articles]]></category> <category><![CDATA[Ext JS]]></category> <category><![CDATA[Framework]]></category> <category><![CDATA[JavaScript]]></category> <category><![CDATA[Presentation]]></category> <category><![CDATA[Library]]></category> <category><![CDATA[Screencast]]></category><guid isPermaLink="false">http://claude.betancourt.us/?p=192</guid> <description><![CDATA[Jack Slocum has posted a screencast of the visual designer tool that will be part of upcoming release of Ext. The roadmap for version 3, due out in the first quarter of 2009, has also been updated. Here is what &#8230; <a href="http://claude.betancourt.us/ext-js-30-showcases-visual-designer-updates-roadmap/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><span class="drop_cap">J</span>ack Slocum has posted a <a href="http://www.screencast.com/users/JackSlocum/folders/Default/media/f7450651-778b-4bbc-9fc4-4e921a7a2705"><strong>screencast</strong></a> of the visual designer tool that will be part of upcoming release of Ext.</p><p><a href="http://www.screencast.com/users/JackSlocum/folders/Default/media/f7450651-778b-4bbc-9fc4-4e921a7a2705"><img class="aligncenter" src="/images/blog/assets/ext-js-designer.jpg?2ce803" title="Ext-JS Designer Preview Screencast" /></a></p><p>The <a href="http://extjs.com/products/extjs/roadmap.php"><strong>roadmap for version 3</strong></a>, due out in the first quarter of 2009, has also been updated. Here is what we can expect (I am really interested in the ones in bold):</p><ul><li>All new lightweight, high-speed core base library</li><li><strong>Flash Charting API</strong></li><li><strong>Ext.Direct &#8211; Remoting and data streaming/comet support</strong></li><li><strong>Integrated client-server data binding/marshaling of updates</strong></li><li>ListView component</li><li>Enhanced Button and Toolbar components</li><li><strong>ARIA/Section 508 accessibility improvements</strong></li><li>CSS updates for reset style scoping and easier custom theming</li><li><strong>Update the Ext event registration model</strong></li><li>Ext.Ajax enhancements</li></ul> ]]></content:encoded> <wfw:commentRss>http://claude.betancourt.us/ext-js-30-showcases-visual-designer-updates-roadmap/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Build Your First Ext-JS in Under an Hour</title><link>http://claude.betancourt.us/build-your-first-ext-js-in-under-an-hour/</link> <comments>http://claude.betancourt.us/build-your-first-ext-js-in-under-an-hour/#comments</comments> <pubDate>Thu, 09 Oct 2008 19:36:35 +0000</pubDate> <dc:creator>Claude</dc:creator> <category><![CDATA[Ext JS]]></category> <category><![CDATA[Framework]]></category> <category><![CDATA[How-To]]></category> <category><![CDATA[Presentation]]></category> <category><![CDATA[JavaScript]]></category> <category><![CDATA[Library]]></category> <category><![CDATA[Webinar]]></category><guid isPermaLink="false">http://claude.betancourt.us/?p=154</guid> <description><![CDATA[The Visual Ajax User Group is hosting a webinar with Aaron Conran, Sr. Architect Ext-JS on Thursday, October 16th, 2008. Sign up now. <a href="http://claude.betancourt.us/build-your-first-ext-js-in-under-an-hour/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><span class="drop_cap">T</span>he Visual Ajax User Group is hosting a webinar with Aaron Conran, Sr. Architect Ext-JS on Thursday, October 16th, 2008.</p><p><a href="http://visualajax.blogspot.com/2008/10/learn-about-ext-from-master-hands-on.html">Hands-On Ext is a fast-paced session</a> in which we will build an Ext application in less than an hour. This session demonstrates how to get started using Ext JS and how quickly you can put together a simple application from scratch. Learn how to utilize Ext&#8217;s high-level UI widgets like GridPanel, TabPanel and FormPanel instead of re-inventing the wheel.</p><p>In this session you learn how to:</p><ul><li>Create an application from scratch with Ext JS</li><li>Utilize Ext&#8217;s high-level UI widgets, such as GridPanel, TabPanel and FormPanel.</li></ul><p><a href="https://www1.gotomeeting.com/register/976425294"><strong>Sign up now</strong></a>.</p> ]]></content:encoded> <wfw:commentRss>http://claude.betancourt.us/build-your-first-ext-js-in-under-an-hour/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Yahoo! Releases YUI 2.6.0</title><link>http://claude.betancourt.us/yahoo-releases-yui-260/</link> <comments>http://claude.betancourt.us/yahoo-releases-yui-260/#comments</comments> <pubDate>Thu, 02 Oct 2008 15:16:27 +0000</pubDate> <dc:creator>Claude</dc:creator> <category><![CDATA[Framework]]></category> <category><![CDATA[JavaScript]]></category> <category><![CDATA[Yahoo!]]></category> <category><![CDATA[YUI]]></category><guid isPermaLink="false">http://claude.betancourt.us/?p=144</guid> <description><![CDATA[2.6.0 introduces a new Carousel Control, offers the Paginator Control for general use (it was previously bundled with DataTable), includes more than 450 total fixes, enhancements and optimizations, graduates eight components out of “beta,” and now ships with more than 290 functional examples. <a href="http://claude.betancourt.us/yahoo-releases-yui-260/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><span class="drop_cap">Y</span><a href="http://yuiblog.com/blog/2008/10/01/yui-260">UI 2.6.0</a> introduces a new Carousel Control, offers the Paginator Control for general use (it was previously bundled with DataTable), includes more than 450 total fixes, enhancements and optimizations, graduates eight components out of “beta,” and now ships with more than 290 functional examples.</p><p>The YUI library has grown to include two new components:</p><ul><li>Carousel</li><li>Paginator (functionality previously released in DataTable but spun out for standalone use)</li></ul><p>The following components have graduated from Beta to GA status:</p><ul><li>Cookie</li><li>DataTable</li><li>DataSource</li><li>Layout Manager</li><li>Rich Text Editor</li><li>Resize</li><li>Profiler</li></ul> ]]></content:encoded> <wfw:commentRss>http://claude.betancourt.us/yahoo-releases-yui-260/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Served from: claude.betancourt.us @ 2012-02-07 15:38:07 by W3 Total Cache -->
