<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: A few days with YUI</title>
	<atom:link href="http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/feed/" rel="self" type="application/rss+xml" />
	<link>http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/</link>
	<description>my god, it's full of stars</description>
	<pubDate>Sun, 20 Jul 2008 13:04:32 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: jminkler</title>
		<link>http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/#comment-94063</link>
		<dc:creator>jminkler</dc:creator>
		<pubDate>Fri, 28 Mar 2008 15:42:50 +0000</pubDate>
		<guid isPermaLink="false">http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/#comment-94063</guid>
		<description>&lt;p&gt;YUI is not meant to be a replacement for jquery, or even a js framework, its for UI widgets.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>YUI is not meant to be a replacement for jquery, or even a js framework, its for UI widgets.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Walter Rumsby</title>
		<link>http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/#comment-66482</link>
		<dc:creator>Walter Rumsby</dc:creator>
		<pubDate>Fri, 21 Dec 2007 03:50:55 +0000</pubDate>
		<guid isPermaLink="false">http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/#comment-66482</guid>
		<description>&lt;p&gt;You could actually rewrite the YUI example as:&lt;/p&gt;

&lt;p&gt;YAHOO.util.Event.addListener('star-activator', 'click',
  function() {
    YAHOO.util.Dom.getElementsByClassName('star-rating', 
      function(el) {
        YAHOO.util.Dom.addClass(el, 'active')
      }
    );
  }
);&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>You could actually rewrite the YUI example as:</p>
<p>YAHOO.util.Event.addListener(&#8217;star-activator&#8217;, &#8216;click&#8217;,<br />
  function() {<br />
    YAHOO.util.Dom.getElementsByClassName(&#8217;star-rating&#8217;,<br />
      function(el) {<br />
        YAHOO.util.Dom.addClass(el, &#8216;active&#8217;)<br />
      }<br />
    );<br />
  }<br />
);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Noel da Costa</title>
		<link>http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/#comment-49709</link>
		<dc:creator>Noel da Costa</dc:creator>
		<pubDate>Mon, 22 Oct 2007 19:09:59 +0000</pubDate>
		<guid isPermaLink="false">http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/#comment-49709</guid>
		<description>&lt;p&gt;I'm likeing Mootools visually and syntactically, but it's missing one killer feature that YUI provides... namely the DataTable. Does anyone know:&lt;/p&gt;

&lt;p&gt;a. whether there's a DataTable with sorting and pagination for MooTools (or whether this would even be feasible with Mootools framework)&lt;/p&gt;

&lt;p&gt;b. whether it would be possible to use MooTools in general for GUI stuff, but then switch to YUI for handling data tables?&lt;/p&gt;

&lt;p&gt;Ta.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I&#8217;m likeing Mootools visually and syntactically, but it&#8217;s missing one killer feature that YUI provides&#8230; namely the DataTable. Does anyone know:</p>
<p>a. whether there&#8217;s a DataTable with sorting and pagination for MooTools (or whether this would even be feasible with Mootools framework)</p>
<p>b. whether it would be possible to use MooTools in general for GUI stuff, but then switch to YUI for handling data tables?</p>
<p>Ta.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Kant</title>
		<link>http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/#comment-35488</link>
		<dc:creator>Andy Kant</dc:creator>
		<pubDate>Thu, 19 Jul 2007 21:29:09 +0000</pubDate>
		<guid isPermaLink="false">http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/#comment-35488</guid>
		<description>&lt;p&gt;We're using YUI on a project at work. The namespacing is kind of a pain, but you can always alias the namespaces like Phil said. The only reason we're using YUI over Mootools or Prototype is the quality of the documentation (which can go a long way in the usefulness of a framework).&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>We&#8217;re using YUI on a project at work. The namespacing is kind of a pain, but you can always alias the namespaces like Phil said. The only reason we&#8217;re using YUI over Mootools or Prototype is the quality of the documentation (which can go a long way in the usefulness of a framework).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zhaozexin</title>
		<link>http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/#comment-34880</link>
		<dc:creator>zhaozexin</dc:creator>
		<pubDate>Mon, 16 Jul 2007 07:24:28 +0000</pubDate>
		<guid isPermaLink="false">http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/#comment-34880</guid>
		<description>&lt;p&gt;you can do it like this:&lt;/p&gt;

&lt;p&gt;YAHOO.util.Dom.get('star-activator').onclick = function(){
  var raters = YAHOO.util.Dom.getElementsByClassName('star-rating');
  YAHOO.util.Dom.addClass(raters, 'active');
}&lt;/p&gt;

&lt;p&gt;YUI and  prototype are two flavor!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>you can do it like this:</p>
<p>YAHOO.util.Dom.get(&#8217;star-activator&#8217;).onclick = function(){<br />
  var raters = YAHOO.util.Dom.getElementsByClassName(&#8217;star-rating&#8217;);<br />
  YAHOO.util.Dom.addClass(raters, &#8216;active&#8217;);<br />
}</p>
<p>YUI and  prototype are two flavor!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kyle</title>
		<link>http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/#comment-33894</link>
		<dc:creator>Kyle</dc:creator>
		<pubDate>Tue, 10 Jul 2007 16:35:02 +0000</pubDate>
		<guid isPermaLink="false">http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/#comment-33894</guid>
		<description>&lt;p&gt;&lt;strong&gt;Mike:&lt;/strong&gt; If you've &lt;a href="http://warpspire.com/tipsresources/web-production/revisiting-flex/" rel="nofollow"&gt;followed my blog&lt;/a&gt;, you'd see that I have indeed checked out Flex.  However, it's not really an issue when describing Javascript frameworks.  The "browser compatibility" issues are null and void if you use most frameworks (I've not had an issue with MooTools, Prototype, etc).  &lt;/p&gt;

&lt;p&gt;I know Adobe/Macromedia loves touting the "end" of browser compatibility problems, but really we're just trading browser compatibility with Flash Player compatibility at the end of the day :)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p><strong>Mike:</strong> If you&#8217;ve <a href="http://warpspire.com/tipsresources/web-production/revisiting-flex/" rel="nofollow">followed my blog</a>, you&#8217;d see that I have indeed checked out Flex.  However, it&#8217;s not really an issue when describing Javascript frameworks.  The &#8220;browser compatibility&#8221; issues are null and void if you use most frameworks (I&#8217;ve not had an issue with MooTools, Prototype, etc).  </p>
<p>I know Adobe/Macromedia loves touting the &#8220;end&#8221; of browser compatibility problems, but really we&#8217;re just trading browser compatibility with Flash Player compatibility at the end of the day :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Potter</title>
		<link>http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/#comment-33893</link>
		<dc:creator>Mike Potter</dc:creator>
		<pubDate>Tue, 10 Jul 2007 16:24:25 +0000</pubDate>
		<guid isPermaLink="false">http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/#comment-33893</guid>
		<description>&lt;p&gt;Have you checked out Adobe Flex?  It removes the browser compatibility problems by relying on the Flash Player to display the UI.&lt;/p&gt;

&lt;p&gt;http://www.flex.org/&lt;/p&gt;

&lt;p&gt;Mike
(I work for Adobe)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Have you checked out Adobe Flex?  It removes the browser compatibility problems by relying on the Flash Player to display the UI.</p>
<p><a href="http://www.flex.org/" rel="nofollow">http://www.flex.org/</a></p>
<p>Mike<br />
(I work for Adobe)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil Freo</title>
		<link>http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/#comment-33882</link>
		<dc:creator>Phil Freo</dc:creator>
		<pubDate>Tue, 10 Jul 2007 14:32:15 +0000</pubDate>
		<guid isPermaLink="false">http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/#comment-33882</guid>
		<description>&lt;p&gt;I would agree with you on many points, but the long namespace is much helped when you do things such as:&lt;/p&gt;

&lt;p&gt;YUD = YAHOO.util.Dom;
YUE = YAHOO.util.Event;
function $(el) { return YUD.get(el); }&lt;/p&gt;

&lt;p&gt;It's annoying to have to do this at the top of your JS files, but assuming your code is wrapped in an anonymous function, you get shorter code and a contained namespace.  I do miss chain-ability and being about to do "div#myID.myclass".  Check out http://dedchain.dustindiaz.com/ for this.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I would agree with you on many points, but the long namespace is much helped when you do things such as:</p>
<p>YUD = YAHOO.util.Dom;<br />
YUE = YAHOO.util.Event;<br />
function $(el) { return YUD.get(el); }</p>
<p>It&#8217;s annoying to have to do this at the top of your JS files, but assuming your code is wrapped in an anonymous function, you get shorter code and a contained namespace.  I do miss chain-ability and being about to do &#8220;div#myID.myclass&#8221;.  Check out <a href="http://dedchain.dustindiaz.com/" rel="nofollow">http://dedchain.dustindiaz.com/</a> for this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick</title>
		<link>http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/#comment-33879</link>
		<dc:creator>Rick</dc:creator>
		<pubDate>Tue, 10 Jul 2007 13:57:55 +0000</pubDate>
		<guid isPermaLink="false">http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/#comment-33879</guid>
		<description>&lt;p&gt;&lt;b&gt;MooTools&lt;/b&gt;
$('star-activator').onclick = function () { $$('.star-rating').addClass('active'); };&lt;/p&gt;

&lt;p&gt;Even shorter!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p><b>MooTools</b><br />
$(&#8217;star-activator&#8217;).onclick = function () { $$(&#8217;.star-rating&#8217;).addClass(&#8217;active&#8217;); };</p>
<p>Even shorter!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew Pennell</title>
		<link>http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/#comment-33839</link>
		<dc:creator>Matthew Pennell</dc:creator>
		<pubDate>Tue, 10 Jul 2007 09:06:20 +0000</pubDate>
		<guid isPermaLink="false">http://warpspire.com/tipsresources/interface-scripting/a-few-days-with-yui/#comment-33839</guid>
		<description>&lt;p&gt;jQuery also (kind of) do free hosting of their source code via Amazon's S3 - aside from the DDOS attack that took out their DNS and screwed those links a few months back, it's another plus point for what would be my library of choice.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>jQuery also (kind of) do free hosting of their source code via Amazon&#8217;s S3 - aside from the DDOS attack that took out their DNS and screwed those links a few months back, it&#8217;s another plus point for what would be my library of choice.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.235 seconds -->
