<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: A Spinner Widget</title>
	<atom:link href="http://www.pathf.com/blogs/2007/12/a-spinner-widge/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pathf.com/blogs/2007/12/a-spinner-widge/</link>
	<description>Running commentary about agile development, user experience design and Ajax.</description>
	<lastBuildDate>Fri, 05 Mar 2010 19:33:43 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Dietrich Kappe</title>
		<link>http://www.pathf.com/blogs/2007/12/a-spinner-widge/comment-page-1/#comment-2350</link>
		<dc:creator>Dietrich Kappe</dc:creator>
		<pubDate>Thu, 10 Jul 2008 15:13:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=143#comment-2350</guid>
		<description>@WebEye

No desire to hide the code, just a lack to time to make it more generally useful and package it up. Also, there&#039;s a bug with the initial loading and positioning of images that I&#039;d like to fix.</description>
		<content:encoded><![CDATA[<p>@WebEye</p>
<p>No desire to hide the code, just a lack to time to make it more generally useful and package it up. Also, there&#8217;s a bug with the initial loading and positioning of images that I&#8217;d like to fix.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WebEye</title>
		<link>http://www.pathf.com/blogs/2007/12/a-spinner-widge/comment-page-1/#comment-2335</link>
		<dc:creator>WebEye</dc:creator>
		<pubDate>Wed, 09 Jul 2008 23:15:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=143#comment-2335</guid>
		<description>Very Nice widget...but if you can not share the code, why the hell are you telling about this?Look bro always try to share your knowledge with others....</description>
		<content:encoded><![CDATA[<p>Very Nice widget&#8230;but if you can not share the code, why the hell are you telling about this?Look bro always try to share your knowledge with others&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Weiler</title>
		<link>http://www.pathf.com/blogs/2007/12/a-spinner-widge/comment-page-1/#comment-179</link>
		<dc:creator>Matt Weiler</dc:creator>
		<pubDate>Fri, 14 Mar 2008 15:10:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=143#comment-179</guid>
		<description>&lt;p&gt;Is the source code available for both or either of those two awesome widgets?&lt;br /&gt;
The &quot;Spinner&quot; and &quot;Rolodex&quot;&lt;/p&gt;

&lt;p&gt;Thanks&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Is the source code available for both or either of those two awesome widgets?<br />
The &#8220;Spinner&#8221; and &#8220;Rolodex&#8221;</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Jones</title>
		<link>http://www.pathf.com/blogs/2007/12/a-spinner-widge/comment-page-1/#comment-178</link>
		<dc:creator>Chris Jones</dc:creator>
		<pubDate>Mon, 28 Jan 2008 18:08:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=143#comment-178</guid>
		<description>&lt;p&gt;Nice work!&lt;br /&gt;
I&#039;ve been working on another graphically-centered widget for the incubator:&lt;br /&gt;
&lt;a href=&quot;http://devcenter.yesmail.com/com.yesmail.magellan.gwt.rolodexdemo.RolodexDemoApp/RolodexDemoApp.html&quot; rel=&quot;nofollow&quot;&gt;http://devcenter.yesmail.com/com.yesmail.magellan.gwt.rolodexdemo.RolodexDemoApp/RolodexDemoApp.html&lt;/a&gt;&lt;br /&gt;
This uses an ImageBundle-like interface to let the big image manipulation work to happen at compile time (via deferred binding). &lt;/p&gt;

&lt;p&gt;This works well as an api, since you can do things like this:&lt;/p&gt;

&lt;p&gt;public interface HelpMovies extends RolodexCardBundle {&lt;br /&gt;
RolodexCard welcome_clip1_btn();&lt;br /&gt;
}&lt;/p&gt;

&lt;p&gt;...in onModuleLoad&lt;/p&gt;

&lt;p&gt;        HelpMovies helpMovies = (HelpMovies) GWT.create(HelpMovies.class);&lt;br /&gt;
RolodexCard clip1 = helpMovies.welcome_clip1_btn();&lt;br /&gt;
clip1.addClickListener(new ClickListener() {&lt;br /&gt;
public void onClick(Widget widget) {&lt;br /&gt;
Window.alert(&quot;clip1 clicked!&quot;);&lt;br /&gt;
}&lt;br /&gt;
});&lt;br /&gt;
RolodexPanel rolodex = new RolodexPanel(helpMovies);&lt;/p&gt;

&lt;p&gt;...which is a nice intuitive way to deal with drag-and-drop and click handling.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Nice work!<br />
I&#8217;ve been working on another graphically-centered widget for the incubator:<br />
<a href="http://devcenter.yesmail.com/com.yesmail.magellan.gwt.rolodexdemo.RolodexDemoApp/RolodexDemoApp.html" rel="nofollow">http://devcenter.yesmail.com/com.yesmail.magellan.gwt.rolodexdemo.RolodexDemoApp/RolodexDemoApp.html</a><br />
This uses an ImageBundle-like interface to let the big image manipulation work to happen at compile time (via deferred binding). </p>
<p>This works well as an api, since you can do things like this:</p>
<p>public interface HelpMovies extends RolodexCardBundle {<br />
RolodexCard welcome_clip1_btn();<br />
}</p>
<p>&#8230;in onModuleLoad</p>
<p>        HelpMovies helpMovies = (HelpMovies) GWT.create(HelpMovies.class);<br />
RolodexCard clip1 = helpMovies.welcome_clip1_btn();<br />
clip1.addClickListener(new ClickListener() {<br />
public void onClick(Widget widget) {<br />
Window.alert(&#8221;clip1 clicked!&#8221;);<br />
}<br />
});<br />
RolodexPanel rolodex = new RolodexPanel(helpMovies);</p>
<p>&#8230;which is a nice intuitive way to deal with drag-and-drop and click handling.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: teja</title>
		<link>http://www.pathf.com/blogs/2007/12/a-spinner-widge/comment-page-1/#comment-177</link>
		<dc:creator>teja</dc:creator>
		<pubDate>Tue, 08 Jan 2008 08:03:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=143#comment-177</guid>
		<description>&lt;p&gt;rock solid-one !! after seeing ur work i realised the GWT&lt;br /&gt;
..can i see the source code for that?&gt;?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>rock solid-one !! after seeing ur work i realised the GWT<br />
..can i see the source code for that?>?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luciano</title>
		<link>http://www.pathf.com/blogs/2007/12/a-spinner-widge/comment-page-1/#comment-176</link>
		<dc:creator>Luciano</dc:creator>
		<pubDate>Sat, 29 Dec 2007 09:14:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=143#comment-176</guid>
		<description>&lt;p&gt;Very Nice.&lt;br /&gt;
Where can i download the widget ?&lt;br /&gt;
Regards&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Very Nice.<br />
Where can i download the widget ?<br />
Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ewb</title>
		<link>http://www.pathf.com/blogs/2007/12/a-spinner-widge/comment-page-1/#comment-175</link>
		<dc:creator>ewb</dc:creator>
		<pubDate>Sat, 15 Dec 2007 02:55:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=143#comment-175</guid>
		<description>&lt;p&gt;Very nicely done.  Ditto T.J.&#039;s comment - the performance, smoothness is better in FF v2.0.0.4 than IE v7.0.5730.11 on my machine.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Very nicely done.  Ditto T.J.&#8217;s comment &#8211; the performance, smoothness is better in FF v2.0.0.4 than IE v7.0.5730.11 on my machine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: T.J.</title>
		<link>http://www.pathf.com/blogs/2007/12/a-spinner-widge/comment-page-1/#comment-174</link>
		<dc:creator>T.J.</dc:creator>
		<pubDate>Fri, 14 Dec 2007 17:20:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=143#comment-174</guid>
		<description>&lt;p&gt;That&#039;s a very neat application.  I&#039;ve long thought about trying to design a sort of &quot;Product Demo&quot; using all DHTML, where you can click different parts of the product and get more info about it.  You see things like that alot, but it&#039;s always flash based.  It&#039;s good to see that something like is doable, especially being so lightweight for its size.  As for performance, it works better in Firefox than IE7 on my machine.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>That&#8217;s a very neat application.  I&#8217;ve long thought about trying to design a sort of &#8220;Product Demo&#8221; using all DHTML, where you can click different parts of the product and get more info about it.  You see things like that alot, but it&#8217;s always flash based.  It&#8217;s good to see that something like is doable, especially being so lightweight for its size.  As for performance, it works better in Firefox than IE7 on my machine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shelley</title>
		<link>http://www.pathf.com/blogs/2007/12/a-spinner-widge/comment-page-1/#comment-173</link>
		<dc:creator>Shelley</dc:creator>
		<pubDate>Fri, 14 Dec 2007 16:37:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=143#comment-173</guid>
		<description>&lt;p&gt;That&#039;s really nice. We don&#039;t have the capability to skew as the items rotate to the back, but eventually DHTML and SVG combined would give us that.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>That&#8217;s really nice. We don&#8217;t have the capability to skew as the items rotate to the back, but eventually DHTML and SVG combined would give us that.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.250 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-21 02:39:52 -->
