<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" 
      xmlns:thr="http://purl.org/syndication/thread/1.0">
  <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html" />
  <link rel="self" type="application/atom+xml" href="http://www.insideria.com/atom.xml" />
  <id>tag:www.insideria.com,2009://34/tag:www.insideria.com,2008://34.23494-</id>
  <updated>2009-11-07T20:07:17Z</updated>
  <title>Comments for Writing Your First YUI Application (http://www.insideria.com/2008/05/writing-your-first-yui-applica.html)</title>
  <generator uri="http://www.sixapart.com/movabletype/">Movable Type 4.21-en</generator>
  <entry>
    <id>tag:www.insideria.com,2008://34.23494</id>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://blogs.oreilly.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=34/entry_id=23494" title="Writing Your First YUI Application" />
    <published>2008-05-14T15:00:00Z</published>
    <updated>2008-05-16T02:39:08Z</updated>
    <title>Writing Your First YUI Application</title>
    <summary>The promise of JavaScript/CSS libraries like the free, BSD-licensed Yahoo! User Interface (YUI) Library is that they make it easier to create rich interfaces in the browser. In this article, we&apos;ll explore the creation of a simple web app using YUI and look closely at the YUI paradigm.</summary>
    <author>
      <name>Eric Miraglia</name>
      
    </author>
    
    <category term="Features" />
    
    <content type="html" xml:lang="en" xml:base="http://www.insideria.com/">
      <![CDATA[<em>The promise of JavaScript/CSS libraries like the free, BSD-licensed <a href="http://developer.yahoo.com/yui/" target="_blank">Yahoo! User Interface (YUI) Library</a> is that they make it easier to create rich interfaces in the browser. In this article, we'll explore the creation of a simple web app using YUI and look closely at the YUI paradigm.</em><br/>
<br/>
<strong>Getting Started</strong><br/>
<br/>
YUI consists of several CSS components and nearly three dozen JavaScript components, all of which are designed to empower the rapid creation of web applications that run in all the major web browsers. Yahoo! uses a <a href="http://developer.yahoo.com/yui/articles/gbs/" target="_blank">Graded Browser Support</a> approach in which we "white-list" a subset of browsers that we'll fully support &#8212; we call these the "A-Grade browsers," and, taken together, they represent more than 90% of traffic on Yahoo!'s network worldwide. YUI is tested and supported in all A-Grade browsers (including current versions of Safari, Opera, Firefox and Internet Explorer).<br/>
<br/>
<div class="ap_r" style="margin: 16px;"><a href="http://www.insideria.com/upload/2008/04/writing_your_first_yui_applica/ui-language.png" class="highslide" onclick="return hs.expand(this)"><img src="http://www.insideria.com/upload/2008/04/writing_your_first_yui_applica/ui-language.png" alt="ui-language.png" title="Click to enlarge" width="148"/></a></div>The best way to think about YUI and what it does for you is to consider the difference between the user interface language of the browser as compared with the desktop. In the browser, the "default" language is relatively limited. You have form elements (buttons, select menus, text inputs) and hyperlinks. On the desktop, you expect much more: Tabs, sliders, cascading menus, dialogs, tooltips, data grids, rich text editing, drag and drop, animation, autocompletion, and so on. Here's one way to visualize this difference, with the browser's native UI elements on the left and the richer set of desktop-style UI elements on the right:<br/>
<br/>
In the browser, everything on the right side of this diagram requires some hard work. YUI, like other JavaScript/CSS libraries, aims to make that work less hard.<br/>
<br/>
<strong>Getting to Know YUI</strong><br/>
<br/>
The best way to get to know YUI is to take a quick tour of the YUI website at <a href="http://developer.yahoo.com/yui/">http://developer.yahoo.com/yui/</a>. You'll find that YUI contains four CSS components, a light JavaScript core engine (containing powerhouse elements like <a href="http://developer.yahoo.com/yui/dom/">DOM normalization</a> and an <a href="http://developer.yahoo.com/yui/event/">event system</a>), JavaScript utilities (components like <a href="http://developer.yahoo.com/yui/dragdrop/">Drag &amp; Drop</a> that enable you to build rich interactions), widgets (fully-encapsulated user interactions like a <a href="http://developer.yahoo.com/yui/calendar/">Calendar date-picker</a>), and developer tools.<br/>
<br/>
<strong>CSS Components</strong><br/>
    <ul>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/reset/">Reset</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/base/">Base</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/fonts/">Fonts</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/grids/">Grids</a></li>
    </ul>
<strong>JavaScript Core</strong><br/>
    <ul>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/yahoo/">The YAHOO Global Object</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/dom/">DOM Collection</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/event/">Event Utility</a></li>			
    </ul>
<strong>Utilities</strong><br/>
    <ul>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/animation/">Animation Utility</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/history/">Browser History Manager</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/connection/">Connection Manager</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/cookie/">Cookie Utility</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/datasource/">DataSource Utility</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/dragdrop/">Drag and Drop Utility</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/element/">Element Utility</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/get/">Get Utility</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/imageloader/">ImageLoader Utility</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/json/">JSON Utility</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/resize/">Resize Utility</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/selector/">Selector Utility</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/yuiloader/">The YUI Loader Utility</a></li>
    </ul>
<strong>Widgets</strong><br/>
    <ul>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/autocomplete/">AutoComplete</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/button/">Button</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/calendar/">Calendar</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/charts/">Charts</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/colorpicker/">Color Picker</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/container/">Container</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/datatable/">DataTable</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/imagecropper/">ImageCropper</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/layout/">Layout Manager</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/menu/">Menu</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/editor/">Rich Text Editor</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/slider/">Slider</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/tabview/">TabView</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/treeview/">TreeView</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/uploader/">Uploader</a></li>
    </ul>
<strong>Developer Tools</strong><br/>
    <ul>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/logger/">Logger</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/profiler/">Profiler</a></li>
        <li><a target="_blank" href="http://developer.yahoo.com/yui/profilerviewer/">ProfilerViewer</a></li>			
        <li><a target="_blank" href="http://developer.yahoo.com/yui/yuitest/">YUI Test</a></li>			
</ul>
<br/>
For each YUI component, you'll find on the website the following resources to help you get started:<br/>
<br/>
<div class="ap_r" style="margin: 16px;"><a href="http://www.insideria.com/upload/2008/04/writing_your_first_yui_applica/users-guide.png" class="highslide" onclick="return hs.expand(this)"><img src="http://www.insideria.com/upload/2008/04/writing_your_first_yui_applica/users-guide.png" alt="users-guide.png" title="Click to enlarge" width="148"/></a></div>User's Guide: Every YUI building block is fully documented with a User's Guide that steps through the most basic use cases. These documents also provide information about common configuration options, component-level events, customization strategies, and UI styling/skinning.<br/>
<br/><br/><br/>
<div class="ap_r" style="margin: 16px;"><a href="http://www.insideria.com/upload/2008/04/writing_your_first_yui_applica/cheat-sheet.png" class="highslide" onclick="return hs.expand(this)"><img src="http://www.insideria.com/upload/2008/04/writing_your_first_yui_applica/cheat-sheet.png" alt="cheat-sheet.png" title="Click to enlarge" width="148"/></a></div>Cheat Sheets are printable one-page documents that summarize a component's API, configuration options, and common use cases. You can <a target="_blank" href="http://developer.yahoo.com/yui/docs/assets/cheatsheets.zip">download the full cheat sheet packet</a> from the YUI website &#8212; it makes for a useful desk reference as you work through YUI-based projects.<br/>
<br/><br/><br/>
<div class="ap_r" style="margin: 16px;"><a href="http://www.insideria.com/upload/2008/04/writing_your_first_yui_applica/api-doc.png" class="highslide" onclick="return hs.expand(this)"><img src="http://www.insideria.com/upload/2008/04/writing_your_first_yui_applica/api-doc.png" alt="api-doc.png" title="Click to enlarge" width="148"/></a></div>API Documentation:</strong> <a target="_blank" href="http://developer.yahoo.com/yui/docs/">YUI's full, searchable API</a> is available for review, including method, property, event, and source references.<br/>
<br/><br/><br/><br/><br/><br/>
<div class="ap_r" style="margin: 16px;"><a href="http://www.insideria.com/upload/2008/04/writing_your_first_yui_applica/example.png" class="highslide" onclick="return hs.expand(this)"><img src="http://www.insideria.com/upload/2008/04/writing_your_first_yui_applica/example.png" alt="example.png" title="Click to enlarge" width="148"/></a></div>Examples:</strong> Every YUI component ships with <a target="_blank" href="http://developer.yahoo.com/yui/examples/">a full complement of examples</a> covering common use cases.<br/>
<br/><br/><br/><br/><br/><br/><br/>
<strong>Building Your First Application</strong><br/>
<br/>
The best way to get the feel for YUI is to build a sample application &#8212; so let's get started. In our sample application, we'll use the <a target="_blank" href="http://developer.yahoo.com/yui/autocomplete/">YUI AutoComplete Control</a> powered by the <a target="_blank" href="http://developer.yahoo.com/search/web/V1/webSearch.html">Yahoo! Search web service</a> to supercharge a standard site-search form. As a user types a search on our site (or sites), AutoComplete will query Yahoo! Search for possible results; when it finds pages that match the query, it will open a suggestion container with a menu of results for the user to choose from. This is equivalent to having the first page of search results come back on-the-fly. The user doesn't have to navigate to the results page; s/he doesn't even need to finish typing in the search terms, in some cases.<br/>
<br/>
Once the container is open, the user can click on a result or arrow to a result using the keyboard; in the latter case, the enter key sends the user to the selected page. <br/>
<br/>
Here's a screenshot of the app in its finished state:<br/>
<br/>
<div class="ap_c"><a href="http://www.insideria.com/upload/2008/04/writing_your_first_yui_applica/sitesearch-ui.png" class="highslide" onclick="return hs.expand(this)"><img src="http://www.insideria.com/upload/2008/04/writing_your_first_yui_applica/sitesearch-ui.png" alt="sitesearch-ui.png" title="Click to enlarge" width="400"/></a></div>

<br/>
Here are our requirements and the YUI components we need to meet those requirements:<br/>
<br/>
<ol>
  <li>The search control should work without JavaScript, taking the user to the standard Yahoo! Search results page. </li>
  <li>The search suggestion container should have full arrow-key and mouse support; the <a target="_blank" href="http://developer.yahoo.com/yui/autocomplete/">YUI AutoComplete Control</a> provides this functionality.</li>
  <li>The suggestion container should be animated; AutoComplete has intrinsic support for this if we include <a target="_blank" href="http://developer.yahoo.com/yui/animation/">YUI's Animation Utility</a>.</li>
  <li>We want to avoid using as server-side proxy (as would be required in traditional XHR/Ajax-style applications). Instead, we'll use <a target="_blank" href="http://developer.yahoo.com/search/web/V1/webSearch.html">a  JSON-based webservice from Yahoo! Search</a> and leverage<a target="_blank" href="http://developer.yahoo.com/yui/get/"> YUI's Get Utility</a> for this proxyless solution. AutoComplete implements the Get Utility for its proxyless, script-node based DataSource, so we'll make use of that.</li>
</ol>
<br/>
Armed with this knowledge about our dependencies, we can go to the <a target="_blank" href="http://developer.yahoo.com/yui/articles/hosting/#configure">YUI Configurator</a> on the YUI website and let it determine the full list of YUI files we'll need for our implementation.<br/>
<br/>

<div class="ap_c"><a href="http://www.insideria.com/upload/2008/04/writing_your_first_yui_applica/configurator.png" class="highslide" onclick="return hs.expand(this)"><img src="http://www.insideria.com/upload/2008/04/writing_your_first_yui_applica/configurator.png" alt="configurator.png" title="Click to enlarge" width="400"/></a></div>
<br/>
Take the output of the Configurator and put the stylesheet and script information in the <head> element of your document. Now we're ready to start writing our application.<br/>
<br/>
<strong>Setting Up the Markup</strong><br/>
<br/>
The markup for our application is simple: We need a form, a text input, and a submit button for the basic form, and we need an element to serve as the suggestion container to be populated by AutoComplete. We'll add some Yahoo! Search-specific hidden fields to our form to ensure that, if submitted, results will only be returned for the sites we've selected:<br/>
<br/>
<pre>
<!--Use a real form; if JS is not enabled, or if the user
    hits enter in the search field, we want to go to Yahoo
    search and provide a standard search results page.-->
<form action="http://search.yahoo.com/search" id="sitesearchform">

<!--Restrict the search suggestions to specific sites:-->
<input name="vs" type="hidden" value="developer.yahoo.com">
<input name="vs" type="hidden" value="yuiblog.com">

<!--This element contains our AutoComplete elements and
    the submit button.-->
<div id="sitesearch">
	<label for="searchinput">Site Search: </label>
    <!--The search container is the element that AutoComplete
        will use to show search suggestions.-->
    <input type="text" id="searchinput" name="p">
	<input type="submit" value="Search" id="searchsubmit">    
    <div id="searchcontainer"></div>
</div>
</form>
</pre>
You can test out the markup portion of the application in the file <code><a href="http://www.insideria.com/upload/2008/04/writing_your_first_yui_applica/1-markup.html">1-markup.html</a></code>.  The expected behavior is that submitting the form takes you to Yahoo! Search, where the two designated sites are searched for results.  In this article, we're using the two sites dedicated to YUI (<code><a target="_blank" href="http://developer.yahoo.com/yui/">developer.yahoo.com/yui</a></code> and <code><a target="_blank" href="http://yuiblog.com/">yuiblog.com</a></code>). You can easily change this setting to specify one or more sites relevant to your own work; just keep in mind that the sites must be open to Yahoo! Search indexing.<br/>
<br/>
<strong>Adding AutoComplete to Your Search Form</strong><br/>
<br/>
<div class="ap_r" style="margin: 16px;"><a href="http://www.insideria.com/upload/2008/04/writing_your_first_yui_applica/autocomplete-cheatsheet.png" class="highslide" onclick="return hs.expand(this)"><img src="http://www.insideria.com/upload/2008/04/writing_your_first_yui_applica/autocomplete-cheatsheet.png" alt="autocomplete-cheatsheet.png" title="Click to enlarge" width="148"/></a></div>From the functioning markup base, we can begin implementing the YUI components that we added to the head of the page. In any AutoComplete implemenation, we begin by creating a DataSource &#8212; effectively, establishing the pool of &quot;suggestions&quot; that AutoComplete can choose from in populating its suggestion container. You can read about the various kinds of AutoComplete DataSources on the <a target="_blank" href="http://developer.yahoo.com/yui/autocomplete/">AutoComplete User's Guide</a> &#8212; they include basic JavaScript arrays, custom JavaScript functions, and XMLHttpRequest-based services, and script-node sources. (If you're playing around with this code, you may also want to print out a copy of the <a target="_blank" href="http://yuiblog.com/assets/pdf/cheatsheets/autocomplete.pdf">AutoComplete Cheat Sheet</a>.) In this application, we'll use the script node solution which allows us to access cross-domain data from Yahoo! Search without using a server-side proxy. (<strong>Security note:</strong> You should never access cross-domain JavaScript from untrusted sources. In this case, we're trusting the Yahoo! Search webservice <em>not</em> to return a malicious script.)<br/>
<br/>
Here's our code to set up the DataSource:<br/>
<br/>
<div class="acode" style="overflow: auto; padding: 10px;" ><div style="overflow-x: visible;">
<code language="perl">
<pre>
<span class="blockcomment">/* First, we'll create our DataSource, using the Script
   Node DataSource constructor.  We pass in the base URL
   and the schema that we'll use to map the returned 
   data. */</span>
<span class="category1">this</span>.oDataSource = <span class="category1">new</span> YAHOO.widget.DS_ScriptNode("<span class="quote">http://search.yahooapis.com/WebSearchService/V1/webSearch?appid=YahooDemo&amp;output=json&amp;site=developer.yahoo.com&amp;site=yuiblog.com&amp;region=us</span>", ["<span class="quote">ResultSet.Result</span>","<span class="quote">Title</span>","<span class="quote">Url</span>","<span class="quote">ClickUrl</span>"]);</pre>
</code>

</div></div> 
The schema array is important; these fields map to fields passed in by the JSON web service we are using, and we'll reference these when we format the results for our suggestion container in a moment. Note that Yahoo! Search gives us a literal URL for the result page and a "click URL". The click URL is the URL we should send users through to reach a search result, as it aids Yahoo! Search in evaluating the quality of results and in sorting results more intelligently for future searches.<br/>
<br/>
With our DataSource in place, we can set up our AutoComplete instance. We need to pass four arguments to AutoComplete's constructor:<br/>
<br/>
<ol>
  <li>The ID of the text input element (<code>searchinput</code>);</li>
  <li>the ID of the suggestion container element (<code>searchcontainer</code>);</li>
  <li>the DataSource instance (created above; <code>oDataSource</code>);</li>
  <li>and any configurations we want to make on our AutoComplete instance for things like animation (which we'll pass in as an object literal; <a target="_blank" href="http://developer.yahoo.com/yui/docs/YAHOO.widget.AutoComplete.html#properties">a list of configuration options can be found in the AutoComplete API documentation</a>).</li>
</ol>
<br/>
Here's the annotated code for setting up the AutoComplete instance with some rational configurations applied for this kind of application:<br/>
<br/>
<div class="acode" style="overflow: auto; padding: 10px;" ><div style="overflow-x: visible;">
<code language="perl">
<pre>
<span class="blockcomment">/* With all of the pieces in hand, we can now instantiate
   and configure our AutoComplete instance: */</span>
<span class="category1">this</span>.oAutoComp = <span class="category1">new</span> YAHOO.widget.AutoComplete(
    "<span class="quote">searchinput</span>", <span class="linecomment">// the input field's ID</span>
    "<span class="quote">searchcontainer</span>", <span class="linecomment">// the suggestion container's ID</span>
    <span class="category1">this</span>.oDataSource, <span class="linecomment">// the DataSource</span>
    {  <span class="linecomment">// here, we begin our configuration options:</span>
         autoHighlight: <span class="category1">false</span>, <span class="linecomment">//We don't want the first</span>
                               <span class="linecomment">//result highlighted by default.</span>
         animVert: <span class="category1">true</span>,		  <span class="linecomment">//Yes, animate the suggestion</span>
                               <span class="linecomment">//container...</span>
         animHoriz: <span class="category1">false</span>,	  <span class="linecomment">//but only vertically, not</span>
                               <span class="linecomment">//horizontally.</span>
         animSpeed: 0.3,		  <span class="linecomment">//The animation should last</span>
                               <span class="linecomment">//0.3 seconds.</span>
         minQueryLength: 4,	  <span class="linecomment">//Don't search for results until</span>
                               <span class="linecomment">//the user has entered at least</span>
                               <span class="linecomment">//4 characters in the input field.</span>
         useShadow: <span class="category1">true</span>,	  <span class="linecomment">//Build in a drop-shadow.</span>
         prehighlightClassName: "<span class="quote">yui-ac-prehighlight</span>"
                               <span class="linecomment">//Use a different highlight style</span>
                               <span class="linecomment">//for mouse-over than for arrow-to.</span>
     });</pre>
</code>

</div></div> 
None of these settings are sacred; feel free to play around with different configurations.<br/>
<br/>
Next up, we need to format the results that AutoComplete puts in our suggestion container; we do that in our instance's formatResult function which is called for each result item. Nothing fancy in the markup...we'll simply use <em> tags </em>to specify page titles.<br/>
<br/>
<div class="acode" style="overflow: auto; padding: 10px;" ><div style="overflow-x: visible;">
<code language="perl">
<pre>
<span class="blockcomment">/* Formatting your result is the key to having a customized
   look-and-feel for your AutoComplete implementation.  Here,
   we do a very simple markup for the result title and the
   URL for the result. */</span>
<span class="category1">this</span>.oAutoComp.formatResult = <span class="category1">function</span>(oResultItem, sQuery) {
     <span class="category1">return</span> "<span class="quote">&lt;em&gt;</span>" + oResultItem[0] + "<span class="quote">&lt;/em&gt;&lt;br /&gt;</span>" + oResultItem[1];
};</pre>
</code>

</div></div> 
In the code above, <code>oResultItem</code> passed to <code>formatResult</code> is comprised of the fields we specified in our DataSource schema: <code>Title</code>, <code>Url</code>, and <code>ClickUrl</code>.<br/>
<br/>
The function we just wrote populates the suggestion container. When a user selects an item from this container, the itemSelectEvent is fired. That's our cue to take the user to the page they selected from the search results. Let's subscribe to the itemSelectEvent and use that event to trigger navigation to the selected page:<br/>
<br/>
<div class="acode" style="overflow: auto; padding: 10px;" ><div style="overflow-x: visible;">
<code language="perl">
<pre>
<span class="blockcomment">/* What do we want to do when an item in the suggestion container
	   is selected (either by arrowing and hitting enter or by clicking)?
	   We'll subscribe to the itemSelectEvent and when it fires use its
	   arguments to set a new location for the current page. */</span>
	<span class="category1">this</span>.oAutoComp.itemSelectEvent.subscribe(<span class="category1">function</span>(<span class="category2">type</span>, args) {
 		<span class="blockcomment">/* this line works around Opera's preventDefault
 		   bug: */</span>
 		YAHOO.util.Dom.<span class="category2">get</span>("<span class="quote">searchsubmit</span>").disabled = <span class="category1">true</span>;
 		
 		<span class="blockcomment">/* now, we go off to the destination page chosen by
 		   the user from the AutoComplete suggestion list: */</span>
 		location.href = (args[2][2]);	
 	});</pre>
</code>

</div></div>
We've snuck in a little hack here for Opera, which <a target="_blank" href="http://dev.opera.com/forums/topic/169876">does not honor <code>preventDefault</code> in all cases</a>; by disabling the submit button on our form when an item is selected, we can work around that bug while still allowing the form to submit normally when no item is selected via AutoComplete.<br/>
<br/>
One more bit of business remains before we test out our application. AutoComplete, true to its name, wants to automatically complete the text being typed in the input field when an item is selected in the suggestion container. We don't want that here. Rather, we want the input field to remain untouched while item selection takes us to the designated page. To accomplish this, we're going to customize our AutoComplete instance by overriding one of its core methods: <br/>
<br/>
<div class="acode" style="overflow: auto; padding: 10px;" ><div style="overflow-x: visible;">
<code language="perl">
<pre>
<span class="blockcomment">/* Here we'll hack AutoComplete a little bit.  AutoComplete is
   designed to put the selected item's primary value in the
   input field.  In this case, that would be the result's Title
   field.  We don't really want that -- we're using AutoComplete
   not to do type-ahead but to map to instant results.  So, we'll
   suppress the standard behavior by overriding a private method
   on this specific AutoComplete instance: */</span>
<span class="category1">this</span>.oAutoComp._updateValue = <span class="category1">function</span>() {
     <span class="category1">return</span> <span class="category1">true</span>;
}</pre>
</code>

</div></div> 
At this point, we've looked at:<br/>
<br/>
<ol>
  <li>How to configure a YUI implementation and put YUI on the page;</li>
  <li>How to set up the markup for a <a target="_blank" href="http://en.wikipedia.org/wiki/Progressive_enhancement">progressively-enhanced</a> YUI widget;</li>
  <li>How to instantiate and configure a YUI widget;</li>
  <li>How to subscribe to and make use of the &quot;custom events&quot; provided by a YUI widget;</li>
  <li>And how to override default behavior to get a bespoke implementation that maps to our requirements.</li>
</ol>
<br/>
Although each YUI component has its own set of configurations and events, you'll find that this set of implementation concerns is consistent throughout the library. Use the User's Guides, API docs, and Cheat Sheets to identify the patterns used by each component.</p>
<p>With this code in place, our implementation is functional (though not as pretty as we want just yet, and not quite complete).  We can look at this partial code milestone in <code><a href="http://www.insideria.com/upload/2008/04/writing_your_first_yui_applica/2-partial.html">2-partial.html</a></code>.  Don't worry about how it looks yet &mdash; just note that it's functional and ready for some finishing touches.<br/>
<br/>
<strong>Finishing Touches</strong><br/>
<br/>
To get the final look-and-feel from our requirements document, we need to add some CSS styling.  We're going to center the search control <em>in the middle of its host element</em>; Jenny Han Donnelly, AutoComplete's author, has <a target="_blank" href="http://developer.yahoo.com/yui/examples/autocomplete/ac_ysearch_json.html">a nice tutorial on the CSS and JS customizations required for this purpose</a>.<br/>
<br/>
Here's the CSS portion:<br/>
<div class="acode" style="overflow: auto; padding: 10px;" ><div style="overflow-x: visible;">
<code language="perl">
<pre>
&lt;style <span class="category2">type</span>="<span class="quote">text/css</span>"&gt;
    #sitesearch {<span class="category2">text</span>-<span class="category2">align</span>:center; <span class="category2">position</span>:relative;}
	#searchinput {<span class="category2">position</span>:<span class="category1">static</span>;<span class="category2">width</span>:30em; <span class="category2">font</span>-<span class="category2">size</span>:11px; <span class="category2">font</span>-weight:<span class="category2">bold</span>; <span class="category2">width</span>:30em;}
	#searchcontainer {<span class="category2">text</span>-<span class="category2">align</span>:left; <span class="category2">width</span>:34em; }
	#searchcontainer .yui-ac-bd {<span class="category2">font</span>-<span class="category2">size</span>:10px; <span class="category2">color</span>:#666; <span class="category2">background</span>-<span class="category2">color</span>:#E1E7F3; <span class="category2">text</span>-<span class="category2">align</span>:left;}
	#searchcontainer li {overflow:hidden; <span class="category2">text</span>-overflow:ellipsis; cursor:pointer; }
	#searchcontainer em {<span class="category2">font</span>-style:normal; <span class="category2">font</span>-weight:<span class="category2">bold</span>; <span class="category2">color</span>:#000033;}
	.yui-ac-ft {padding:3px; <span class="category2">font</span>-<span class="category2">size</span>:10px; <span class="category2">text</span>-<span class="category2">align</span>:right;}*/
&lt;/style&gt;</pre>
</code>

</div></div>
We're using elements of YUI's default "skin", so we will apply the controlling class name for invoking that skin (<code>yui-skin-sam</code>) at the top level of our document (it need only be a parent element of the skinned control, but if you are only using one skin on a given page it is convenient to place the style on the document's &lt;<code>body&gt;</code> element.  You can read <a target="_blank" href="http://developer.yahoo.com/yui/articles/skinning/">more about skinning YUI on the YUI website</a>.<br/>
<br/>
As with most applications, there are some final touches to be made in our code to get our implementation in line with the comp we looked at earlier in this article. Here are the requisite changes to add in the footer and to correctly position the suggestion container:<br/>
<br/>
<div class="acode" style="overflow: auto; padding: 10px;" ><div style="overflow-x: visible;">
<code language="perl">
<pre>
<span class="blockcomment">/* We want to have, at the bottom of the search container, a 
   link making it obvious to the user how s/he can find *all*
   results for the current query.  We'll use AutoComplete's
   built-in footer mechanism for that, adding a link to which
   we'll wire a form-submit event: */</span>
<span class="category1">this</span>.oAutoComp.setFooter("<span class="quote">&lt;a id='sitesearchshowall' href='#'&gt;View all search results.&lt;/a&gt;</span>");

<span class="blockcomment">/* Here's the wiring for the form submission on our footer link.
   Note that we use the YUI Event Utility to add this listener --
   this is part of YUI Core. */</span>
YAHOO.util.Event.<span class="category1">on</span>("<span class="quote">sitesearchshowall</span>", "<span class="quote">click</span>", <span class="category1">function</span>(e) {
     <span class="blockcomment">/* The Dom Collection's get method is similar to
        document.getElementById in this instance: */</span>
     YAHOO.util.Dom.<span class="category2">get</span>("<span class="quote">sitesearchform</span>").submit();
});

<span class="blockcomment">/* We'll use one of AutoComplete's built-in events to position the
   suggestion container directly below the input field.  AutoComplete
   handles this for you in non-centered implementations; for notes
   on the centered implementation shown here, see Jenny Han Donnelly's
   tutorial: http:<span class="linecomment">//developer.yahoo.com/yui/examples/autocomplete/ac_ysearch_json.html */</span>
    this.oAutoComp.doBeforeExpandContainer = function(oTextbox, oContainer, sQuery, aResults) {
        var pos = YAHOO.util.Dom.getXY(oTextbox);
        pos[1] += YAHOO.util.Dom.get(oTextbox).offsetHeight + 2;
        YAHOO.util.Dom.setXY(oContainer,pos);

		/* Workaround for an IE6 rendering bug: */</span>
        document.getElementById("<span class="quote">searchcontainer</span>").style.overflow = "<span class="quote">visible</span>";

        <span class="category1">return</span> <span class="category1">true</span>;
    };</pre>
</code>

</div></div>  
With that code in place, our implementation is complete.  You can check out the working example in the file <code><a href="http://www.insideria.com/upload/2008/04/writing_your_first_yui_applica/3-complete.html">3-complete.html</a></code>.<br/>
<br/>
<strong>Summary</strong><br/>
<br/>
YUI is a comprehensive frontend toolkit &#8212; we've just looked at a tiny subset of its functionality here. But don't be daunted by YUI's comprehensiveness. It is, at heart, a straightforward framework on top of which you can build robust, scalable web applications that work across all the A-Grade browsers.<br/>
<br/>
As you begin developing with YUI, you should consider joining the <a target="_blank" href="http://tech.groups.yahoo.com/group/ydn-javascript/">YUI community forum</a> and subscribing to <a target="_blank" href="http://yuiblog.com/">YUIBlog</a>. In the community forum, you'll be joined by nearly 10,000 felow YUI users, many of whom have developed (and generously share) a deep expertise in specific aspects of the library. On the blog, you'll find articles and videos from the core YUI engineering team and links out to YUI resources in the community at large.]]>
      
    </content>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2017138</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2017138" />
    <title>Comment from pollux on 2008-05-15</title>
    <author>
        <name>pollux</name>
        <uri>http://www.poxd.org</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.poxd.org">
        <![CDATA[<p>Thanks, nice article.</p>

<p>You just have a duplicated paragraph at: <em>Although each YUI component has its own set of configurations and events, you'll find that this set of implementation concerns is consistent throughout the library. Use the User's Guides, API docs, and Cheat Sheets to identify the patterns used by each component.</em></p>]]>
    </content>
    <published>2008-05-15T12:12:08Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2017142</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2017142" />
    <title>Comment from Peter Mularien on 2008-05-15</title>
    <author>
        <name>Peter Mularien</name>
        <uri>http://www.mularien.com/blog/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.mularien.com/blog/">
        <![CDATA[<p>Very well researched and well written article. Although I personally have used YUI Autocomplete in the past, I'll be sharing it with folks around the office. Thanks!</p>]]>
    </content>
    <published>2008-05-15T14:22:24Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2017177</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2017177" />
    <title>Comment from Bobby on 2008-05-15</title>
    <author>
        <name>Bobby</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Nice article, but the layout, font choice, and font size were horrific.</p>]]>
    </content>
    <published>2008-05-16T03:04:23Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2017180</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2017180" />
    <title>Comment from Eric Miraglia on 2008-05-15</title>
    <author>
        <name>Eric Miraglia</name>
        <uri>http://yuiblog.com/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://yuiblog.com/">
        <![CDATA[<p>@Bobby -- Sorry for the formatting issues.  I don't have much control over those.  I hope you found some good infromation, nonetheless, about YUI and what the project offers to developers. Warm regards, Eric</p>]]>
    </content>
    <published>2008-05-16T05:06:21Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2017332</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2017332" />
    <title>Comment from Jim G on 2008-05-22</title>
    <author>
        <name>Jim G</name>
        <uri>http://yojimg.net</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://yojimg.net">
        <![CDATA[<p>One minor detail that perhaps needs addressing:  When there's no search results returned, there's no autocomplete dropdown shown so there's no messaging back to the user that their search failed.  That leaves things in a somewhat vague state, from a UI perspective.  The user's only/natural option then is to click the submit button, which takes them to the actual SRP, which then shows "no results found".  How can we display a message to the user to let them know to try different search terms?</p>]]>
    </content>
    <published>2008-05-22T23:13:57Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2017333</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2017333" />
    <title>Comment from Eric Miraglia on 2008-05-22</title>
    <author>
        <name>Eric Miraglia</name>
        <uri>http://yuiblog.com/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://yuiblog.com/">
        <![CDATA[<p>@Jim G -- Thanks for the suggestion; I hear what you're saying.   Like you, I don't see the search-suggest or "instant search" functionality replacing the search results page (SRP), and entering a search term and pressing enter/return or clicking on the submit button should take you to a full SRP.  (Using the Yahoo Search API on the server side, you could build a SRP housed in your own site chrome, too.)  But while the user is typing, I wouldn't want to display a "no results found" message for a couple of reasons.  The most important is that the suggestion container's contents will lag behind the typing of a fast typer -- and so a "no results" message might be misleading.  As I was considering what you wrote, though, it did occur to me that an activity icon, one that showed when autocomplete was actively looking for results, would be a good addition and would help signal to users that the control was actively trying to help them.  Regards, Eric</p>]]>
    </content>
    <published>2008-05-23T02:14:09Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2017338</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2017338" />
    <title>Comment from Jim G on 2008-05-23</title>
    <author>
        <name>Jim G</name>
        <uri>http://yojimg.net</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://yojimg.net">
        <![CDATA[<p>Eric, thanks for the response and the additional info.  Along the lines of a "no results found" message -- what I was thinking of is how at www.yahoo.com and search.yahoo.com a "No suggestions for your search." message is displayed if no results are available.  However, the functionality there is intended to provide search <i>suggestions</i>, not search <i>results</i>, so I see your point regarding this example as well.  I like the idea of an activity icon or similar.  Thanks again!</p>]]>
    </content>
    <published>2008-05-23T16:40:09Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2019402</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2019402" />
    <title>Comment from Karen Engberg on 2008-07-29</title>
    <author>
        <name>Karen Engberg</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Dear Eric,<br />
Do you still own a pair of golf shoes? Please write if you get this. <br />
Sincerely,<br />
Karen</p>]]>
    </content>
    <published>2008-07-29T22:37:00Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2020472</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2020472" />
    <title>Comment from Abhijeet on 2008-08-07</title>
    <author>
        <name>Abhijeet</name>
        <uri>http://www.lifeiscolourful.com/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.lifeiscolourful.com/">
        <![CDATA[<p>Very nicely written and detailed article. No doubt, I would be emailing this article link to my technology group.</p>

<p>p.s. Extensive list of links that would help.</p>

<p>Abhijeet | <a href="http://www.lifeiscolourful.com/">My Page</a></p>]]>
    </content>
    <published>2008-08-08T06:57:50Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2020534</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2020534" />
    <title>Comment from Ramin siahcheshmi on 2008-08-09</title>
    <author>
        <name>Ramin siahcheshmi</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Hello sir, do we have any fisheye component implemented by yahoo or anyone else using Yui ?!</p>]]>
    </content>
    <published>2008-08-09T10:27:23Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2020595</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2020595" />
    <title>Comment from Eric Miraglia on 2008-08-11</title>
    <author>
        <name>Eric Miraglia</name>
        <uri>http://developer.yahoo.com/yui/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://developer.yahoo.com/yui/">
        <![CDATA[<p>@Rasmin -- No, I am not aware of any "fisheye" effect component built using YUI. -Eric</p>]]>
    </content>
    <published>2008-08-11T15:37:57Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2020601</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2020601" />
    <title>Comment from Andy on 2008-08-11</title>
    <author>
        <name>Andy</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Well, Eric, do you still own golf shoes? The internet needs to know!</p>]]>
    </content>
    <published>2008-08-11T20:34:47Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2020602</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2020602" />
    <title>Comment from Eric Miraglia on 2008-08-11</title>
    <author>
        <name>Eric Miraglia</name>
        <uri>http://developer.yahoo.com/yui/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://developer.yahoo.com/yui/">
        <![CDATA[<p>@Andy -- Well, if it's important -- yes.</p>]]>
    </content>
    <published>2008-08-11T20:38:26Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2020848</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2020848" />
    <title>Comment from rapid fire controller on 2008-08-19</title>
    <author>
        <name>rapid fire controller</name>
        <uri>http://www.xbox-mod.net</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.xbox-mod.net">
        <![CDATA[<p>I found the YUI really intimidating until I read your article.<br />
Many Thanks</p>]]>
    </content>
    <published>2008-08-19T20:48:49Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2043603</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2043603" />
    <title>Comment from Matias on 2008-10-02</title>
    <author>
        <name>Matias</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Thanks for this excelent article. I really enjoy it. Now I have some trouble whit autocomplete using YUI. I can't find the way to do 2 or 3 colums, like the yahoo suggestion slide. Do you have a script that do this thing or do you know where I can find some information?</p>

<p>Many thanks !!</p>

<p>PD: if you've found some error in my poor english... sorry. =)</p>]]>
    </content>
    <published>2008-10-02T22:28:23Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2045392</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2045392" />
    <title>Comment from Flirt Kontaktanzeigen on 2008-11-03</title>
    <author>
        <name>Flirt Kontaktanzeigen</name>
        <uri>http://flirt-kontaktanzeigen.eu</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://flirt-kontaktanzeigen.eu">
        <![CDATA[<p>Thanks for sharing this information and the very useful linklist. Exactly, what I've been looking for...</p>]]>
    </content>
    <published>2008-11-03T17:46:47Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2045888</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2045888" />
    <title>Comment from Aman on 2008-11-07</title>
    <author>
        <name>Aman</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>i was good until I got to this paragraph: "Here are our requirements and the YUI components we need to meet those requirements:"</p>

<p>#1 says to not use JavaScript ?????</p>

<p>#4 what is a server side proxy??</p>

<p>thanks,</p>

<p>-aman</p>]]>
    </content>
    <published>2008-11-07T13:24:03Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2045907</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2045907" />
    <title>Comment from Eric Miraglia on 2008-11-07</title>
    <author>
        <name>Eric Miraglia</name>
        <uri>http://ericmiraglia.com/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://ericmiraglia.com/">
        <![CDATA[<p>@Matias,</p>

<p>Thanks for the question.</p>

<p>I don't have a specific example that fits what you're asking, but think of it as a markup/CSS problem.  Look at the examples on the YUI website (http://developer.yahoo.com/yui/examples/autocomplete ) that use the formatResult function.  You'll just want to separate each "column" into a separate div for each result, styled in CSS to have a specific width.</p>

<p>Regards,<br />
Eric</p>]]>
    </content>
    <published>2008-11-07T18:42:50Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2045931</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2045931" />
    <title>Comment from Nageswara Rao Mothukuri on 2008-11-07</title>
    <author>
        <name>Nageswara Rao Mothukuri</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>simply super.I am Nageswara Rao. i am a fresher, just completed my graduation and joined as devoleper.fortunatly i have been assigend to work on struts with yui interfaces.for some nights it is a nightmare to me.i don't know how to deal this tasks.i asked all of my friends abt this,finally my boss told me to follow this example.after seeing and i have done this example.now i am the one with more confidence to these issues.now i am the one to explain this implemetation to all of my team mates.i am thankful to u.</p>

<p><br />
Nageswara Rao Mothukuri</p>]]>
    </content>
    <published>2008-11-08T06:36:44Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2045932</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2045932" />
    <title>Comment from Eric Miraglia on 2008-11-07</title>
    <author>
        <name>Eric Miraglia</name>
        <uri>http://ericmiraglia.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://ericmiraglia.com">
        <![CDATA[<p>@Aman,</p>

<p>Regarding #1, see <a href="http://en.wikipedia.org/wiki/Progressive_enhancement">http://en.wikipedia.org/wiki/Progressive_enhancement</a> on Progressive Enhancement.  We want the solution to work functionally without JavaScript.  But, of course, we're enhancing it and making it work a little bit better for folks who do have JavaScript enabled in their browser.</p>

<p>Regarding #4, a server side proxy is a file on your server that proxies a request out to a third party server and then returns that response to the client.  The client talks to the third party server via the proxy file on your server.  This is necessary for XHR transactions due to the Same Origin Policy, but it's not required for script-node-based solutions like the one we use in this article.</p>

<p>Regards,<br />
Eric</p>]]>
    </content>
    <published>2008-11-08T07:06:31Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2045933</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2045933" />
    <title>Comment from Eric Miraglia on 2008-11-07</title>
    <author>
        <name>Eric Miraglia</name>
        <uri>http://ericmiraglia.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://ericmiraglia.com">
        <![CDATA[<p>@Nageswara,</p>

<p>You are very kind -- thank you for the generous sentiment.</p>

<p>-Eric</p>]]>
    </content>
    <published>2008-11-08T07:07:44Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2050659</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2050659" />
    <title>Comment from Jim K on 2009-01-09</title>
    <author>
        <name>Jim K</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Good article, Eric.</p>

<p>Typo: "We want to avoid using as (sic) server-side proxy (as would be required in traditional XHR/Ajax-style applications)."</p>

<p>That should be "...a server-side proxy..."</p>]]>
    </content>
    <published>2009-01-10T06:32:23Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2051798</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2051798" />
    <title>Comment from chobe on 2009-01-27</title>
    <author>
        <name>chobe</name>
        <uri>http://www.localindya.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.localindya.com">
        <![CDATA[<p>This is great article I will be using it on <a href="http://www.localindya.com">http://www.localindya.com</a>  soon.</p>]]>
    </content>
    <published>2009-01-27T19:06:13Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2051986</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2051986" />
    <title>Comment from Manish on 2009-01-30</title>
    <author>
        <name>Manish</name>
        <uri>http://www.9amblog.com/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.9amblog.com/">
        <![CDATA[<p>Hi Eric,</p>

<p>a really nice article... came across this as searching for some integration application with one of my application Opentext Livelink. I may have lost in the middle but before I dwell further ,could you tell me does YUI provides any API functions that I can use to integrate into a 3rd party bespoke application. If yes, can you give an example of any integration you did...</p>]]>
    </content>
    <published>2009-01-30T20:11:57Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2051988</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2051988" />
    <title>Comment from Eric Miraglia on 2009-01-30</title>
    <author>
        <name>Eric Miraglia</name>
        <uri>http://ericmiraglia.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://ericmiraglia.com">
        <![CDATA[<p>Manish -- I'm not sure I understand the question. What do you want to integrate?  What kinds of APIs or services are you looking for? -Eric</p>]]>
    </content>
    <published>2009-01-30T21:08:21Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2052928</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2052928" />
    <title>Comment from Robert on 2009-02-10</title>
    <author>
        <name>Robert</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>I've been struggling to build charts for my websites using some Ajax ready scripts but some failed in different browsers. However i didn't notice the same with yui may be because they fix cross browser issues quickly. Anyway i'm planning to use the components to build a chart on chemotherapy drugs and trial phase stuff on <a href="http://www.chemotherapyfacts.com">http://www.chemotherapyfacts.com</a> soon. Thanks for the directions..</p>]]>
    </content>
    <published>2009-02-11T04:26:27Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2053162</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2053162" />
    <title>Comment from Manish on 2009-02-12</title>
    <author>
        <name>Manish</name>
        <uri>http://www.9amblog.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.9amblog.com">
        <![CDATA[<p>Thanks Eric for getting back....I actually plan to built some data summary on my<a href="http://www.9amblog.com">website</a> .This will actually be a a hidden section for my private use where I need to display data from a different application site. I plan to use the webservices from that application website to extract data.Hence I need to know if there is any ready API..Sorry not sure if I was able to put forward my views but it is getting very complex and I'm now exploring some other ways to implement it.</p>]]>
    </content>
    <published>2009-02-12T19:56:59Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2054396</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2054396" />
    <title>Comment from Naresh K on 2009-03-03</title>
    <author>
        <name>Naresh K</name>
        <uri>http://opencodez.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://opencodez.com">
        <![CDATA[<p>Can anyone tell me how to parse a simple xml file (from cross domain) in YUI. I tried lots of things but no sucess , Please help....<br />
A very simple example will work most probably using DataSource utility.</p>]]>
    </content>
    <published>2009-03-03T12:52:37Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2054704</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2054704" />
    <title>Comment from Tom B on 2009-03-08</title>
    <author>
        <name>Tom B</name>
        <uri>http://tombillips.com/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://tombillips.com/">
        <![CDATA[<p>Thanks Eric for this post. I have one question though, what would you suggest me to do when I want to start with YUI?</p>

<p>Best regards, <a href="http://tombillips.com/">Tom</a></p>]]>
    </content>
    <published>2009-03-08T11:38:47Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2057184</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2057184" />
    <title>Comment from Kirsten Willis on 2009-04-08</title>
    <author>
        <name>Kirsten Willis</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>The best way to think about YUI and what it does for you is to consider the difference between the user interface language of the browser as compared with the desktop. In the browser, the "default" language is relatively limited. You have form elements (buttons, select menus, text inputs) and hyperlinks. On the desktop, you expect much more: Tabs, sliders, cascading menus, dialogs, tooltips, data grids, rich text editing, drag and drop, animation, autocompletion, and so on. Here's one way to visualize this difference, with the browser's native UI elements on the left and the richer set of desktop-style UI elements on the right: Kirsten from <a href="http://www.squidoo.com/howtogrowtallerfast">how to grow taller</a> guide.</p>]]>
    </content>
    <published>2009-04-08T14:52:15Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2057431</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2057431" />
    <title>Comment from Nave on 2009-04-12</title>
    <author>
        <name>Nave</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>follow this example.after seeing and i have done this example.now i am the one with more confidence to these issues.now i am the one to explain this implementation to all of my team mates. I used the same for the <a href="http://www.testkingsite.com/vmware/vcp-310.html">VCP-310</a> once but nothing happened.<br />
</p>]]>
    </content>
    <published>2009-04-12T21:02:36Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2058279</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2058279" />
    <title>Comment from Alex on 2009-04-24</title>
    <author>
        <name>Alex</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Well written Eric. </p>

<p><br />
Regards, <a href="http://www.gizmodesk.com">Alex</a></p>]]>
    </content>
    <published>2009-04-24T17:42:17Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2058965</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2058965" />
    <title>Comment from Steven on 2009-05-06</title>
    <author>
        <name>Steven</name>
        <uri>http://www.freeuniquearticles.com/health/benefit-of-skipping-rope-exercises/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.freeuniquearticles.com/health/benefit-of-skipping-rope-exercises/">
        <![CDATA[<p>This is an excellent written article.<br />
I will link and blog abt it at <a href="http://www.freeuniquearticles.com">http://www.freeuniquearticles.com</a></p>]]>
    </content>
    <published>2009-05-06T13:49:23Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2058968</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2058968" />
    <title>Comment from Pia on 2009-05-06</title>
    <author>
        <name>Pia</name>
        <uri>http://www.memorials.com/cremation-urns.php</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.memorials.com/cremation-urns.php">
        <![CDATA[<p>Thanks.. Iw ant myself to be very proficient in YUI component. Great resource for m. Just bookmarked it.</p>]]>
    </content>
    <published>2009-05-06T14:04:46Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2059307</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2059307" />
    <title>Comment from Gary Winnick on 2009-05-10</title>
    <author>
        <name>Gary Winnick</name>
        <uri>http://www.freerepublic.com/focus/f-news/656932/posts</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.freerepublic.com/focus/f-news/656932/posts">
        <![CDATA[<p>Yahoo is taking step in every field now. And now with YUI, you can build applications as well. Thats really nice. And i have seen the steps in this article and it is not very difficult and i think in future everyone will go for YUI applications.<br />
Cheers <a href="http://www.freerepublic.com/focus/f-news/656932/posts">Gary Winnick</a></p>]]>
    </content>
    <published>2009-05-11T06:12:13Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2060309</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2060309" />
    <title>Comment from Mike on 2009-05-25</title>
    <author>
        <name>Mike</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Wow, I really loved this tutorial. Now I know how to write my own application. Thanks again. Mike at <a href="http://learnhowtojumphigher.net/">learn how to jump higher</a> guide.</p>]]>
    </content>
    <published>2009-05-25T11:54:29Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2060810</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2060810" />
    <title>Comment from Anonymous on 2009-06-01</title>
    <author>
        <name>Anonymous</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Your article explains YUI in a very detailed manner. It's luck for me that I read your article. Garry from <a href="http://www.carrentaladvice.net/">car rentals</a></p>]]>
    </content>
    <published>2009-06-01T13:39:35Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2060811</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2060811" />
    <title>Comment from Garry Foster on 2009-06-01</title>
    <author>
        <name>Garry Foster</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Your article explains YUI in a very detailed manner. It's luck for me that I read your article. Garry from <a href="http://www.carrentaladvice.net/">car rentals</a></p>]]>
    </content>
    <published>2009-06-01T13:40:25Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2060872</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2060872" />
    <title>Comment from Mike on 2009-06-01</title>
    <author>
        <name>Mike</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>In the browser, everything on the right side of this diagram requires some hard work. YUI, like other JavaScript/CSS libraries, aims to make that work less hard. I think that it is the reason why we should use it. <a href="http://www.goarticles.com/cgi-bin/showa.cgi?C=1649504">the jump manual</a> guide.</p>]]>
    </content>
    <published>2009-06-02T06:17:30Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2060909</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2060909" />
    <title>Comment from alan on 2009-06-02</title>
    <author>
        <name>alan</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Thats exactly what ive been searching for. Thanks alot for taking the time to write the article because its helped me alot.<br />
Alan - <a href="http://myinternetbusinessexplained.com">internet business</a></p>]]>
    </content>
    <published>2009-06-02T18:29:54Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2061725</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2061725" />
    <title>Comment from Bill on 2009-06-03</title>
    <author>
        <name>Bill</name>
        <uri>http://www.lawyers.com/Tennessee/Knoxville/William-C.-Cremins-2468898-f.html</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.lawyers.com/Tennessee/Knoxville/William-C.-Cremins-2468898-f.html">
        <![CDATA[<p>I understand that YUI includes graded browser support, in which there is a white list of fully supported browsers, but what about the Flock browser? That is a truly Web 2.0 browser and it would be awesome to have that <a href="http://www.lawyers.com/Tennessee/Knoxville/William-C.-Cremins-2468898-f.html">kind of integration</a>. Any word on when that might happen?<br />
</p>]]>
    </content>
    <published>2009-06-03T23:53:26Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2061775</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2061775" />
    <title>Comment from Eric Miraglia on 2009-06-04</title>
    <author>
        <name>Eric Miraglia</name>
        <uri>http://ericmiraglia.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://ericmiraglia.com">
        <![CDATA[<p>Bill,</p>

<p>Graded Browser Support (http://developer.yahoo.com/yui/articles/gbs/ ) is designed specifically to accommodate browsers like Flock -- ones that are based on high-quality engines and that perform well across the open web.  It's also designed to protect developers from having to test every one of those browsers, which is an unmanageable expense.  So, Flock is considered under GBS to be an X-Grade browser, one whose testing is covered by testing Firefox (based on the same engine).  We recommend that developers deliver their full, rich web applications to Flock, but we regard it to be Flock's responsibility (not that of every web developer around the world) to make sure that their browser performs at par with the browser from which it's derived.</p>

<p>-Eric<br />
</p>]]>
    </content>
    <published>2009-06-04T17:01:32Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2061840</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2061840" />
    <title>Comment from Gadgets and Technology on 2009-06-05</title>
    <author>
        <name>Gadgets and Technology</name>
        <uri>http://www.finesttech.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.finesttech.com">
        <![CDATA[<p>This is exactly what I was looking for. Great info. This really helped!</p>]]>
    </content>
    <published>2009-06-05T19:46:38Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2061889</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2061889" />
    <title>Comment from Starbuck on 2009-06-06</title>
    <author>
        <name>Starbuck</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>I was banging my head against a wall here until I started thinking that maybe the problem I'm facing is not my own stupidity. Long story short, copy the 3-complete.html example and it will execute fine. Change all references of 2.5.1 to 2.7.0 and it doesn't work. The error is<br />
YAHOO.util.DataSourceBase.TYPE_JSON is null or object not defined. I think for some reason the whole DataSourceBase object is missing. I get this error from the Yahoo server-provided code as well as from a local download.</p>

<p>Going backards to see where it broke, 2.6.0 does not work but 2.5.2 does!</p>

<p>I'm a long-time developer but completely new to YUI. From what I'm seeing it looks like something changed since this article was written.  For someone to make use of this fine article a small revision is in order.</p>

<p>I hope newcomers see this note at the bottom of this page before agonizing like I did.</p>]]>
    </content>
    <published>2009-06-06T22:56:36Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2066055</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2066055" />
    <title>Comment from BB on 2009-06-11</title>
    <author>
        <name>BB</name>
        <uri>http://dlbb.co.cc</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://dlbb.co.cc">
        <![CDATA[<p>Your tips and code are very great, easy to understand for me, a newbie. I will build an application for myself tonight.<br />
Thank you very much.<br />
<a href="http://nhviet.com/f">NHV</a></p>]]>
    </content>
    <published>2009-06-11T17:59:14Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2066110</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2066110" />
    <title>Comment from john on 2009-06-12</title>
    <author>
        <name>john</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>I dont think i'll ever get the hang of this yahoo interface stuff. I'm sure its not hard and will be easier with your post but im just struggling being a complete newbie to it all.<br />
John<br />
<a href="http://elotteryuk.co.uk">elottery</a></p>]]>
    </content>
    <published>2009-06-12T16:22:39Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2066527</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2066527" />
    <title>Comment from John C on 2009-06-19</title>
    <author>
        <name>John C</name>
        <uri>http://www.wisebills.co.uk</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.wisebills.co.uk">
        <![CDATA[<p>Great Stuff!  Thanks.  Just followed your tutorial and got my first YUI application up and running.  Awesome.  I like the fact that for each YUI components there is a dedicated webpage help for it :) John, <a href="http://www.wisebills.co.uk">Utility Warehouse Distributor</a></p>]]>
    </content>
    <published>2009-06-19T18:09:47Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2067339</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2067339" />
    <title>Comment from Ezinez on 2009-06-28</title>
    <author>
        <name>Ezinez</name>
        <uri>http://ezinez.co.cc</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://ezinez.co.cc">
        <![CDATA[<p>Great guides, anyone try it and success? I am not a programer but I like technology, and this look easy, I will try it to make a first program.<br />
--------------- <br />
<a href="http://ezinez.co.cc">Ezinez</a><br />
</p>]]>
    </content>
    <published>2009-06-28T10:30:33Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2067351</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2067351" />
    <title>Comment from Betclick on 2009-06-28</title>
    <author>
        <name>Betclick</name>
        <uri>http://www.bookmakers.fr/Betclic</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.bookmakers.fr/Betclic">
        <![CDATA[<p>Great guides, thanks !</p>]]>
    </content>
    <published>2009-06-28T15:15:04Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2067410</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2067410" />
    <title>Comment from Jessica Spears on 2009-06-29</title>
    <author>
        <name>Jessica Spears</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Thanks Eric thats a very nice and well explained tutorials.<br />
I want to know if I can translate it in French and publish at my website?<br />
Please let me know.</p>

<p>Jessica @ <a href="http://www.oldenglishfont.net/">Old english font</a></p>]]>
    </content>
    <published>2009-06-29T16:47:37Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2067413</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2067413" />
    <title>Comment from Eric Miraglia on 2009-06-29</title>
    <author>
        <name>Eric Miraglia</name>
        <uri>http://ericmiraglia.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://ericmiraglia.com">
        <![CDATA[<p>Jessica,</p>

<p>InsideRIA owns the content, so you'd have to get in touch with them to authorize a translation -- check out the "contact us" link at the bottom of the page.</p>

<p>-Eric</p>]]>
    </content>
    <published>2009-06-29T17:13:29Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2067552</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2067552" />
    <title>Comment from Zin on 2009-06-30</title>
    <author>
        <name>Zin</name>
        <uri>http://000wh.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://000wh.com">
        <![CDATA[<p>Must be very happy when I can make a small application that can help some body do something, I trying it now...<br />
------------------<br />
<a href="http://000wh.com">free web site hosting</a></p>]]>
    </content>
    <published>2009-07-01T06:06:25Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2067557</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2067557" />
    <title>Comment from Zin on 2009-07-01</title>
    <author>
        <name>Zin</name>
        <uri>http://000wh.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://000wh.com">
        <![CDATA[<p>Must be very happy when I can make a small application that can help some body do something, I trying it now...<br />
------------------<br />
<a href="http://000wh.com">free web site hosting</a></p>]]>
    </content>
    <published>2009-07-01T07:07:30Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2067572</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2067572" />
    <title>Comment from Pari sportifs on 2009-07-01</title>
    <author>
        <name>Pari sportifs</name>
        <uri>http://parisportifsenligne.fr</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://parisportifsenligne.fr">
        <![CDATA[<p>Thank you</p>]]>
    </content>
    <published>2009-07-01T11:41:50Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2067768</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2067768" />
    <title>Comment from Gevril on 2009-07-04</title>
    <author>
        <name>Gevril</name>
        <uri>http://theluxurywatchstore.biz/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://theluxurywatchstore.biz/">
        <![CDATA[<p>Great guides, anyone try it and success? I am not a programer but I like technology</p>]]>
    </content>
    <published>2009-07-04T15:24:32Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2067770</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2067770" />
    <title>Comment from Ebel on 2009-07-04</title>
    <author>
        <name>Ebel</name>
        <uri>http://theluxurywatchstore.biz/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://theluxurywatchstore.biz/">
        <![CDATA[<p>I don't have a specific example that fits what you're asking, but think of it as a markup/CSS problem. Look at the examples on the YUI website (http://developer.yahoo.com/yui/examples/autocomplete ) that use the formatResult function. You'll just want to separate each "column" into a separate div for each result, styled in CSS to have a specific width.</p>

<p>Regards,<br />
<a href="http://theluxurywatchstore.biz/">Ebel</a></p>]]>
    </content>
    <published>2009-07-04T15:37:45Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2067785</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2067785" />
    <title>Comment from Gina on 2009-07-05</title>
    <author>
        <name>Gina</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>I might try in future I learned programming at highschool.:) anyway great articles thanks Gina owner of Literal Videos <a href="http://www.literalversion.com">Literal Videos</a></p>]]>
    </content>
    <published>2009-07-05T10:30:35Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2067836</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2067836" />
    <title>Comment from Shawn on 2009-07-06</title>
    <author>
        <name>Shawn</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>The real-world questions that will be answered by this year's 140+ sessions are those that currently preoccupy working developers, <a href="http://www.firstwebhosting.net">web hosting</a> architects, IT managers and business line managers. The 2008 tracks include: </p>

<p>Enterprise RIAs and AJAX <br />
Rich-Web Case Studies and Mash-Ups<br />
Enterprise Web 2.0 & Social Applications <br />
Event-Driven Web <br />
iPhone Developer Summit <br />
Diamond Track</p>]]>
    </content>
    <published>2009-07-06T13:50:08Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2067909</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2067909" />
    <title>Comment from Benny D on 2009-07-07</title>
    <author>
        <name>Benny D</name>
        <uri>http://idigibuzz.com/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://idigibuzz.com/">
        <![CDATA[<p>Thank you for a great article - your explanation of YUI is very clear and detailed. Stoked I came across your site!</p>

<p>Thanks for putting the time and effort into sharing this information</p>

<p>Ben!</p>

<p><a href="http://idigibuzz.com">http://idigibuzz.com</a><br />
</p>]]>
    </content>
    <published>2009-07-07T22:54:06Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2067921</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2067921" />
    <title>Comment from BeeReg on 2009-07-08</title>
    <author>
        <name>BeeReg</name>
        <uri>http://www.beereg.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.beereg.com">
        <![CDATA[<p>Looks very cool guides, I love Y!M very much, I will design and build a nice application then share it for everyone this weekend.<br />
Thank for share!</p>

<p><a href="http://www.beereg.com">Cheap domain name registration</a></p>]]>
    </content>
    <published>2009-07-08T08:52:57Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2067935</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2067935" />
    <title>Comment from # Daniel Steiger on 2009-07-08</title>
    <author>
        <name># Daniel Steiger</name>
        <uri>http://thewatchdealer.biz/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://thewatchdealer.biz/">
        <![CDATA[<p>I found the YUI really intimidating until I read your article.</p>

<p>Thanks,<br />
<a href="http://thewatchdealer.biz">Daniel Steiger</a></p>]]>
    </content>
    <published>2009-07-08T10:30:22Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2068011</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2068011" />
    <title>Comment from Pat M on 2009-07-09</title>
    <author>
        <name>Pat M</name>
        <uri>http://jumphighernow.wordpress.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://jumphighernow.wordpress.com">
        <![CDATA[<p>I'm hoping the YUI helps me design an application I was wanting to incorporate in a future project of mine.  </p>

<p>Pat from <a href="http://jumphighernow.wordpress.com">Learn How To Jump Higher Now</a></p>]]>
    </content>
    <published>2009-07-09T15:27:31Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2068019</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2068019" />
    <title>Comment from Pari sportifs on 2009-07-09</title>
    <author>
        <name>Pari sportifs</name>
        <uri>http://parisportifsenligne.fr</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://parisportifsenligne.fr">
        <![CDATA[<p>Thanks for putting the time</p>]]>
    </content>
    <published>2009-07-09T16:45:00Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2068031</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2068031" />
    <title>Comment from jouer casinos on 2009-07-09</title>
    <author>
        <name>jouer casinos</name>
        <uri>http://jouer-casinos.fr</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://jouer-casinos.fr">
        <![CDATA[<p>Great guides</p>]]>
    </content>
    <published>2009-07-09T20:44:03Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2068052</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2068052" />
    <title>Comment from HGH on 2009-07-10</title>
    <author>
        <name>HGH</name>
        <uri>http://www.hghyouth.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.hghyouth.com">
        <![CDATA[<p>I'm learning about coding stuffs. I really want to improve my web development skil.</p>]]>
    </content>
    <published>2009-07-10T08:00:27Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2068141</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2068141" />
    <title>Comment from UKite on 2009-07-12</title>
    <author>
        <name>UKite</name>
        <uri>http://www.dailymoneysaving.co.uk/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.dailymoneysaving.co.uk/">
        <![CDATA[<p>Though I am a blogger but related to the software development. The first time I heard about YUI from my development team in the meetings, and started searching on various articles in YUI, out of which this one is first. </p>

<p>UKite | <a href="http://www.dailymoneysaving.co.uk/">My UKite blog</a></p>]]>
    </content>
    <published>2009-07-12T23:04:50Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2068148</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2068148" />
    <title>Comment from Adi on 2009-07-12</title>
    <author>
        <name>Adi</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Very nicely written and detailed article. No doubt, I would be emailing this article link to my technology group. <a href="http://www.interact-studio.com">web design timisoara</a></p>]]>
    </content>
    <published>2009-07-13T06:58:14Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2068163</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2068163" />
    <title>Comment from MartinT on 2009-07-13</title>
    <author>
        <name>MartinT</name>
        <uri>http://www.tshirtinsight.com/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.tshirtinsight.com/">
        <![CDATA[<p>Apologies - I had two browser windows open and commented in the wrong one!  This comment was meant for the post on Google Wave at <a href="http://www.insideria.com/2009/06/new-poll-what-are-you-most-cur.html.">http://www.insideria.com/2009/06/new-poll-what-are-you-most-cur.html.</a></p>]]>
    </content>
    <published>2009-07-13T09:35:07Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2068282</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2068282" />
    <title>Comment from john gnazzo on 2009-07-14</title>
    <author>
        <name>john gnazzo</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Interesting technology,  I was wondering what IDE would be best for using YUI?  Any recommendations?</p>]]>
    </content>
    <published>2009-07-14T19:32:25Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2068283</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2068283" />
    <title>Comment from Eric Miraglia on 2009-07-14</title>
    <author>
        <name>Eric Miraglia</name>
        <uri>http://ericmiraglia.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://ericmiraglia.com">
        <![CDATA[<p>@John -- We've done integration work with Dreamweaver CS4, and Aptana has excellent support as well.  But most developers around here use Vim or an equivalent or TextMate on the Mac.  Lots of options.  -Eric</p>]]>
    </content>
    <published>2009-07-14T19:41:07Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2068507</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2068507" />
    <title>Comment from Robert Smith on 2009-07-17</title>
    <author>
        <name>Robert Smith</name>
        <uri>http://togetyourexback.org</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://togetyourexback.org">
        <![CDATA[<p>Thanks for this article I just started to get into user side and server side scripting. I like how nowadays anyone can be a programmer. I you need to do is learn the basics and use script files as cheat sheets to basically create anything you like.</p>]]>
    </content>
    <published>2009-07-18T04:08:15Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2068574</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2068574" />
    <title>Comment from jump higher on 2009-07-18</title>
    <author>
        <name>jump higher</name>
        <uri>http://jumphigher-reviews.com/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://jumphigher-reviews.com/">
        <![CDATA[<p>This was neat, but maybe a little over my head.</p>

<p>Guess I'll be heading back to the wikipedia! Gotta do some more research!</p>]]>
    </content>
    <published>2009-07-18T23:19:18Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2068692</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2068692" />
    <title>Comment from increase vertical on 2009-07-20</title>
    <author>
        <name>increase vertical</name>
        <uri>http://idigibuzz.com/how-to-jump-higher-increase-your-vertical/increase-your-vertical/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://idigibuzz.com/how-to-jump-higher-increase-your-vertical/increase-your-vertical/">
        <![CDATA[<p>Yeah great article, unfortunately a little over my head also back to the drawing board.</p>]]>
    </content>
    <published>2009-07-21T04:31:14Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2068712</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2068712" />
    <title>Comment from kamalini on 2009-07-21</title>
    <author>
        <name>kamalini</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>hi ...</p>

<p>can anyone teach me the basics of YUI with few simple programs and how to establish it....</p>

<p>give me step by step instructions...</p>

<p><br />
thanks in advance.....</p>]]>
    </content>
    <published>2009-07-21T12:37:25Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2068728</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2068728" />
    <title>Comment from phpmoz on 2009-07-21</title>
    <author>
        <name>phpmoz</name>
        <uri>http://www.phpmoz.org</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.phpmoz.org">
        <![CDATA[<p>This is good information that I plan on using with some of my other projects.  Thank you for resource.<br />
<a href="http://www.phpmoz.org">php resources</a></p>]]>
    </content>
    <published>2009-07-21T15:49:20Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2068737</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2068737" />
    <title>Comment from Richy on 2009-07-21</title>
    <author>
        <name>Richy</name>
        <uri>http://www.topbargains.com.au/s/best-dreamhost-promo-code</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.topbargains.com.au/s/best-dreamhost-promo-code">
        <![CDATA[<p>Great guide, you tell me all steps, just connect all of them together and we will have a great application.<br />
Thank you very much.<br />
</p>]]>
    </content>
    <published>2009-07-21T18:34:53Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2068783</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2068783" />
    <title>Comment from Phan mem ke toan on 2009-07-22</title>
    <author>
        <name>Phan mem ke toan</name>
        <uri>http://tamasong.net/phan-mem-ke-toan/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://tamasong.net/phan-mem-ke-toan/">
        <![CDATA[<p>Your guide is very great, very easy to follow, build a YUI application now is very easy for every programmers.<br />
Thank you very much.</p>]]>
    </content>
    <published>2009-07-22T07:28:15Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2068818</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2068818" />
    <title>Comment from Richy on 2009-07-22</title>
    <author>
        <name>Richy</name>
        <uri>http://www.topbargains.com.au/s/best-dreamhost-promo-code</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.topbargains.com.au/s/best-dreamhost-promo-code">
        <![CDATA[<p>YUI application is very easy to write now after read your guide.<br />
Thank you very much.<br />
<a href="http://www.topbargains.com.au/s/best-dreamhost-promo-code">Dreamhost promo code</a></p>]]>
    </content>
    <published>2009-07-22T17:16:02Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2068830</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2068830" />
    <title>Comment from Anonymous on 2009-07-22</title>
    <author>
        <name>Anonymous</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>How can I find similar articles about this subject and could you please help me to understand the last paragraph?</p>]]>
    </content>
    <published>2009-07-22T20:15:22Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2068871</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2068871" />
    <title>Comment from Interact on 2009-07-23</title>
    <author>
        <name>Interact</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Your article explains YUI in a very detailed manner. <br />
I also find some examples  on the YUI website  developer.yahoo.com/yui/examples/autocomplete</p>

<p><a href="http://www.interact-studio.com/">web design timisoara</a></p>]]>
    </content>
    <published>2009-07-23T14:09:03Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2068985</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2068985" />
    <title>Comment from a1article on 2009-07-24</title>
    <author>
        <name>a1article</name>
        <uri>http://a1article.co.cc/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://a1article.co.cc/">
        <![CDATA[<p>Followed all your guides now I have an application for myself. <br />
Thank you.</p>]]>
    </content>
    <published>2009-07-25T04:51:33Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2069003</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2069003" />
    <title>Comment from توبيكات on 2009-07-25</title>
    <author>
        <name>توبيكات</name>
        <uri>http://www.dd7.net</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.dd7.net">
        <![CDATA[<p>thanks for this topic </p>]]>
    </content>
    <published>2009-07-25T11:11:26Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2069005</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2069005" />
    <title>Comment from مركز تحميل on 2009-07-25</title>
    <author>
        <name>مركز تحميل</name>
        <uri>http://www.mobdi3ine.net</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.mobdi3ine.net">
        <![CDATA[<p>goooooooooooooooooooooooooooooooooooooooood</p>]]>
    </content>
    <published>2009-07-25T11:13:30Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2069703</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2069703" />
    <title>Comment from Sarah G. on 2009-08-03</title>
    <author>
        <name>Sarah G.</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>This was great, now I can write my own application.  Thanks again.<br />
Sarah from <a href="http://increaseverticalworkouts.com/workouts-to-increase-your-vertical/">plyometric workout</a></p>]]>
    </content>
    <published>2009-08-03T16:04:20Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2069718</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2069718" />
    <title>Comment from Alex on 2009-08-03</title>
    <author>
        <name>Alex</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Thank you for the resource.  I have been looking for this type of application for my <a href="http://www.diyalarmforum.com">alarm companies</a> website.</p>]]>
    </content>
    <published>2009-08-03T19:53:21Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2070001</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2070001" />
    <title>Comment from John on 2009-08-08</title>
    <author>
        <name>John</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>All I can say is Wow! This guide is extremely detailed, I love it. I wrote a simple <a href="http://mmohut.com">Mmorpg</a> script on here and it worked wonderfully thanks to your step by step guide.</p>]]>
    </content>
    <published>2009-08-08T10:59:10Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2070384</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2070384" />
    <title>Comment from Awek comel on 2009-08-14</title>
    <author>
        <name>Awek comel</name>
        <uri>http://awekcomelcun.blogspot.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://awekcomelcun.blogspot.com">
        <![CDATA[<p>It's unbelievable.  Great article nevertheless. I wish you could see gambar <a href="http://awekseksicun.blogspot.com">awek seksi</a>. Thanks for the great insight</p>]]>
    </content>
    <published>2009-08-14T14:43:31Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2070587</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2070587" />
    <title>Comment from gerald on 2009-08-18</title>
    <author>
        <name>gerald</name>
        <uri>http://hubpages.com/hub/The-Retractable-Badge-Holder</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://hubpages.com/hub/The-Retractable-Badge-Holder">
        <![CDATA[<p>Yahoo User Interface is a good application. I've been trying to master it for the past months. But I still couldn't get the full feel of it though. gerald at <a href="http://hubpages.com/hub/The-Retractable-Badge-Holder">metal retractable badge holder</a></p>]]>
    </content>
    <published>2009-08-18T07:26:44Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2070790</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2070790" />
    <title>Comment from jessy web on 2009-08-21</title>
    <author>
        <name>jessy web</name>
        <uri>http://www.reliable-hosts.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.reliable-hosts.com">
        <![CDATA[<p>me too gerald.struggling with it for past few days.if you can give more tips on it atleast you have a few month experience,anyways...brilliant article.glad that I took a visit here</p>]]>
    </content>
    <published>2009-08-21T07:43:33Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2070791</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2070791" />
    <title>Comment from jessy web on 2009-08-21</title>
    <author>
        <name>jessy web</name>
        <uri>http://www.reliable-hosts.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.reliable-hosts.com">
        <![CDATA[<p>me too gerald.struggling with it for past few days.if you can give more tips on it atleast you have a few month experience,anyways...brilliant article.glad that I took a visit here</p>]]>
    </content>
    <published>2009-08-21T07:45:04Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2079801</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2079801" />
    <title>Comment from chest workout on 2009-09-02</title>
    <author>
        <name>chest workout</name>
        <uri>http://bestabworkoutroutine.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://bestabworkoutroutine.com">
        <![CDATA[<p>Good guide.</p>]]>
    </content>
    <published>2009-09-02T19:42:54Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2079803</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2079803" />
    <title>Comment from maternity t shirts on 2009-09-02</title>
    <author>
        <name>maternity t shirts</name>
        <uri>http://plussizematernitytshirts.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://plussizematernitytshirts.com">
        <![CDATA[<p>Thanks for the guide.</p>]]>
    </content>
    <published>2009-09-02T19:44:31Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2081667</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2081667" />
    <title>Comment from jump manual review on 2009-09-03</title>
    <author>
        <name>jump manual review</name>
        <uri>http://increaseverticalworkouts.com/jump-manual-review-is-it-a-scam/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://increaseverticalworkouts.com/jump-manual-review-is-it-a-scam/">
        <![CDATA[<p>Thanks.</p>]]>
    </content>
    <published>2009-09-03T19:44:17Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2081691</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2081691" />
    <title>Comment from Josh on 2009-09-03</title>
    <author>
        <name>Josh</name>
        <uri>http://increaseverticalworkouts.com/jump-manual-review-is-it-a-scam/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://increaseverticalworkouts.com/jump-manual-review-is-it-a-scam/">
        <![CDATA[<p>Thanks.<br />
<a href="http://increaseverticalworkouts.com/jump-manual-review-is-it-a-scam/">jump manual review</a></p>]]>
    </content>
    <published>2009-09-03T19:52:08Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2081700</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2081700" />
    <title>Comment from Jason on 2009-09-03</title>
    <author>
        <name>Jason</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Great!<br />
<a href="http://bestchestworkoutroutine.com">chest workout</a></p>]]>
    </content>
    <published>2009-09-03T19:54:03Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2081721</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2081721" />
    <title>Comment from Videos Tutorials on 2009-09-03</title>
    <author>
        <name>Videos Tutorials</name>
        <uri>http://www.videostutorials.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.videostutorials.com">
        <![CDATA[<p>Thanks for this excelent article. I really enjoy it. Now I have some trouble whit autocomplete using YUI.</p>]]>
    </content>
    <published>2009-09-03T20:02:27Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2081729</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2081729" />
    <title>Comment from Design Ideas on 2009-09-03</title>
    <author>
        <name>Design Ideas</name>
        <uri>http://www.designideacentral.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.designideacentral.com">
        <![CDATA[<p>I found the YUI really intimidating until I read your article.</p>]]>
    </content>
    <published>2009-09-03T20:06:18Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2084023</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2084023" />
    <title>Comment from Jason on 2009-09-04</title>
    <author>
        <name>Jason</name>
        <uri>http://poweryogapants.com/white-yoga-pants/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://poweryogapants.com/white-yoga-pants/">
        <![CDATA[<p>I love it.<br />
<a href="http://poweryogapants.com/white-yoga-pants/">white yoga pants</a></p>]]>
    </content>
    <published>2009-09-05T02:42:19Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2092588</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2092588" />
    <title>Comment from David Sheann on 2009-09-10</title>
    <author>
        <name>David Sheann</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Nice Guide!<br />
Thanks for the CSS Codes.</p>

<p>David Sheann from<br />
<a href="http://www.oplconsultoria.com">OPL Consultoria</a></p>]]>
    </content>
    <published>2009-09-11T01:03:19Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2101333</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2101333" />
    <title>Comment from Jason on 2009-09-16</title>
    <author>
        <name>Jason</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Great stuff. <a href="http://howtoplaybeachvolleyball.com/where-to-buy-kinesio-tape/">buy kinesio tape</a></p>]]>
    </content>
    <published>2009-09-16T20:32:00Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2103296</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2103296" />
    <title>Comment from Kirk on 2009-09-17</title>
    <author>
        <name>Kirk</name>
        <uri>http://kirksamuelson.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://kirksamuelson.com">
        <![CDATA[<p>Very well written and presented. However, the auto complete does not work for me in Safari 4, Firefox 3.5, or Firefox 3. All on Mac OS X 10.5 and 10.6. Haven't tried other browsers.<br />
Also, the comments are getting rather spammy! </p>

<p>Thanks very much.</p>]]>
    </content>
    <published>2009-09-17T23:22:11Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2103362</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2103362" />
    <title>Comment from nuoc hoa on 2009-09-17</title>
    <author>
        <name>nuoc hoa</name>
        <uri>http://www.muabanperfume.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.muabanperfume.com">
        <![CDATA[<p>Great article!</p>]]>
    </content>
    <published>2009-09-18T00:54:39Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2105281</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2105281" />
    <title>Comment from Matias on 2009-09-19</title>
    <author>
        <name>Matias</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>The finished link</p>

<p>"3-complete.html"</p>

<p>does not seems to work on ie8, or firefox 3.5.<br />
</p>]]>
    </content>
    <published>2009-09-19T11:32:20Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2117134</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2117134" />
    <title>Comment from Bob Rowe on 2009-09-25</title>
    <author>
        <name>Bob Rowe</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Well said! <br />
<a href="http://www.goarticles.com/cgi-bin/showa.cgi?C=1649504">the jump manualy</a></p>]]>
    </content>
    <published>2009-09-26T04:00:55Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2131723</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2131723" />
    <title>Comment from Michael on 2009-10-08</title>
    <author>
        <name>Michael</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Pretty decent article in fact tutorial; it worth reading for me. I think it gona work for me, am a software graduate but working in the field of <a href="http://www.cheapwebhostingseller.com/seo/">seo</a> and <a href="http://www.businesswebhostingplans.com">web hosting</a> from last two year, i never pay any attention to enhance my coding abilities, after reading your tutorial it seems pretty easy for me to get grip over coding as well. </p>]]>
    </content>
    <published>2009-10-08T11:05:48Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2137121</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2137121" />
    <title>Comment from High Viz Vests on 2009-10-12</title>
    <author>
        <name>High Viz Vests</name>
        <uri>http://www.highvis-workwear.co.uk</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.highvis-workwear.co.uk">
        <![CDATA[<p>I've always overlooked YUI. Cheers for the article, will probably start giving it a go to expand my skillset.</p>]]>
    </content>
    <published>2009-10-12T16:02:25Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2140259</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2140259" />
    <title>Comment from Steph on 2009-10-14</title>
    <author>
        <name>Steph</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p><a href="http://www.best-baby-safety-monitors.com/">baby safety monitors</a></p>

<p>This might be interesting to try, I did a little programming back in university, but it seemed so complex back then. This makes it look very manageable.</p>]]>
    </content>
    <published>2009-10-15T01:40:05Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2143027</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2143027" />
    <title>Comment from Alan on 2009-10-16</title>
    <author>
        <name>Alan</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Brilliant well said,</p>

<p>Want to know how to tell the difference between genuine and fake uggs?... <a href="http://www.fakeorreal.co.uk/How-to-tell-fake-ugg-boots.html">fake uggs</a></p>]]>
    </content>
    <published>2009-10-16T20:47:53Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2147038</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2147038" />
    <title>Comment from Master Cleanse on 2009-10-19</title>
    <author>
        <name>Master Cleanse</name>
        <uri>http://www.detoxyourbodytoday.com/Master-Cleanse.html</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.detoxyourbodytoday.com/Master-Cleanse.html">
        <![CDATA[<p>Thanks for the overview on YUI. I was looking for more info on YUI when I found this post. You have made it into somewhat a good tutorial. The Yahoo developers who created this approach made sure that thinking about how different browsers handle things doesn't need to be on my list of concerns when coding. It really makes life a lot easier.</p>

<p>Liam</p>]]>
    </content>
    <published>2009-10-20T00:26:34Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2154114</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2154114" />
    <title>Comment from Dan on 2009-10-24</title>
    <author>
        <name>Dan</name>
        <uri>http://www.businessreportuk.co.uk</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.businessreportuk.co.uk">
        <![CDATA[<p>Excellent overview and tutorial.  YUI could be one of the few saving graces for Yahoo and a fantastic change of direction.  using YUI empowers you to create applications that you really need, not ones that other think you need!</p>]]>
    </content>
    <published>2009-10-24T15:25:16Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2163981</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2163981" />
    <title>Comment from ANKIT on 2009-10-30</title>
    <author>
        <name>ANKIT</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Hi Eric,</p>

<p>I am using DS_ScriptNode</p>

<p>My response is coming from Solr</p>

<p>I am getting an error - in firebug</p>

<p>invalid label<br />
looks like JSONP - issue</p>

<p>The Response is not enclosed in ()</p>

<p>Please help--<br />
Ankit</p>]]>
    </content>
    <published>2009-10-30T22:11:32Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2173415</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2173415" />
    <title>Comment from yournetbiz on 2009-11-05</title>
    <author>
        <name>yournetbiz</name>
        <uri>http://www.yournetbiz.org.uk</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.yournetbiz.org.uk">
        <![CDATA[<p>nice article and some really nice tips there.<br />
Cheers</p>]]>
    </content>
    <published>2009-11-05T15:30:47Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2174617</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2174617" />
    <title>Comment from lucid dream on 2009-11-06</title>
    <author>
        <name>lucid dream</name>
        <uri>http://www.howtoluciddream.info</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.howtoluciddream.info">
        <![CDATA[<p>Good information. Thanks a lot.</p>]]>
    </content>
    <published>2009-11-06T12:37:33Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2176226</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2176226" />
    <title>Comment from Chris on 2009-11-07</title>
    <author>
        <name>Chris</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Very interesting description through which you shared a lot of information that worth visiting your page. In fact its perfect tutorial to learn about the yui application, couple of days back i visited a local <a href="http://www.cheapwebhostingseller.com">cheap webhosting</a> provider, they were also looking for information about this application.</p>]]>
    </content>
    <published>2009-11-07T20:03:50Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2176229</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2176229" />
    <title>Comment from Chris on 2009-11-07</title>
    <author>
        <name>Chris</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Very interesting description through which you shared a lot of information that worth visiting your page. In fact its perfect tutorial to learn about the yui application, couple of days back i visited a local <a href="http://www.cheapwebhostingseller.com">cheap webhosting</a> provider, they were also looking for information about this application.</p>]]>
    </content>
    <published>2009-11-07T20:05:40Z</published>
  </entry>

  <entry>
    <id>tag:www.insideria.com,2008://34.23494-comment:2176232</id>
    <thr:in-reply-to ref="tag:www.insideria.com,2008://34.23494" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/05/writing-your-first-yui-applica.html#comment-2176232" />
    <title>Comment from Chris on 2009-11-07</title>
    <author>
        <name>Chris</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Very interesting description through which you shared a lot of information that worth visiting your page. In fact its perfect tutorial to learn about the yui application, couple of days back i visited a local <a href="http://www.cheapwebhostingseller.com">cheap webhosting</a> provider, they were also looking for information about this application.</p>]]>
    </content>
    <published>2009-11-07T20:07:11Z</published>
  </entry>

</feed
