<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>bassistance.de &#187; jQuery UI</title>
	<atom:link href="http://bassistance.de/category/jquery/jquery-ui/feed/" rel="self" type="application/rss+xml" />
	<link>http://bassistance.de</link>
	<description>Jörn Zaefferer on Bass, Geeks and Rock'n'Roll</description>
	<lastBuildDate>Wed, 28 Jul 2010 11:07:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Autocomplete is dead, long live Autocomplete!</title>
		<link>http://bassistance.de/2010/06/23/autocomplete-is-dead-long-live-autocomplete/</link>
		<comments>http://bassistance.de/2010/06/23/autocomplete-is-dead-long-live-autocomplete/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 14:07:44 +0000</pubDate>
		<dc:creator>Jörn</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery UI]]></category>

		<guid isPermaLink="false">http://bassistance.de/?p=675</guid>
		<description><![CDATA[I&#8217;m finally deprecating the jQuery autocomplete plugin, about four years after its creation (which was actually a merge of two forks of another plugin). jQuery 1.8 was released in March, bundling the brand new Autocomplete widget and a worthy successor of my standalone plugin. The API is way more simpler while much more capable, eg. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m finally deprecating the jQuery autocomplete plugin, about four years after its creation (which was actually a merge of two forks of another plugin). jQuery 1.8 was released in March, bundling the brand new <a href="http://jqueryui.com/demos/autocomplete/">Autocomplete widget</a> and a worthy successor of my standalone plugin. The API is way more simpler while much more capable, eg. its now trivial to work with JSON. And thanks to Themeroller-support, the result looks a lot better.</p>
<p>Today I&#8217;ve finally finished the <a href="http://www.learningjquery.com/2010/06/autocomplete-migration-guide">Autocomplete Migration Guide</a>, which explains how to migrate from ye olde plugin to the new jQuery UI Autocomplete widget. It covers the various options and their replacements, if any. In a lot of cases, we were able to get rid of the options by providing better defaults or by restructuring the API, with the <code>source</code> option being the most prominent example.</p>
<p>The next major jQuery UI release should include the new Tooltip widget, paving the way to shut down another plugin on this site.</p>
]]></content:encoded>
			<wfw:commentRss>http://bassistance.de/2010/06/23/autocomplete-is-dead-long-live-autocomplete/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Labs Preview: jQuery UI Photoviewer</title>
		<link>http://bassistance.de/2009/06/02/labs-preview-jquery-ui-photoviewer/</link>
		<comments>http://bassistance.de/2009/06/02/labs-preview-jquery-ui-photoviewer/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 13:07:23 +0000</pubDate>
		<dc:creator>Jörn</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery UI]]></category>

		<guid isPermaLink="false">http://bassistance.de/?p=500</guid>
		<description><![CDATA[Fresh from the jQuery UI Lab comes the Photoviewer widget. As described on its planning wiki page:
An alternative to Lightbox and its various clones, with the sole purpose of displaying images: One or more thumbnails point at the full resolution image, and instead of displaying that image on a new page, its displayed, above an [...]]]></description>
			<content:encoded><![CDATA[<p>Fresh from the jQuery UI Lab comes the Photoviewer widget. As described on its <a href="http://wiki.jqueryui.com/Photoviewer">planning wiki page</a>:</p>
<blockquote><p>An alternative to Lightbox and its various clones, with the sole purpose of displaying images: One or more thumbnails point at the full resolution image, and instead of displaying that image on a new page, its displayed, above an overlay, on the current page.</p>
<p>When a group of anchors with thumbnails is selected, the user can navigate with mouse and keyboard to rotate through the images.</p></blockquote>
<p>The result is this:</p>
<p><iframe height="500" width="600" src="http://jquery-ui.googlecode.com/svn/branches/labs/photoviewer/demos/photoviewer/default.html"></iframe></p>
<p><em><a href="http://jquery-ui.googlecode.com/svn/branches/labs/photoviewer/demos/photoviewer/default.html">Demo</a></em></p>
<p>There&#8217;s <a href="http://jquery-ui.googlecode.com/svn/branches/labs/photoviewer/demos/photoviewer/resizing.html">another demo</a> showing how the widget can resize images that don&#8217;t fit into the browser window, as well as customizing animations.</p>
<p>Worth mentioning about the current implementation:</p>
<ul>
<li>A &#8220;canvas&#8221; element is used to render the shadow. This allows a lot of flexibility in terms of positioning, color and size of the shadow; if a browser doesn&#8217;t support canvas (IE without <a href="http://excanvas.sourceforge.net/">excanvas</a>) the shadow simply isn&#8217;t rendered</li>
<li>You can click anywhere to close the viewer, or press Escape</li>
<li>Cursor keys, mousewheel as well as mouse navigation buttons (previous/next buttons on some models) can be used to rotate through an image gallery</li>
<li>By using the mousewheel to rotate images, there is no need to emulate fixed positioning or similar hacks, though you need to include the mousewheel plugin</li>
<li>When the last image is reached, the first is displayed, and the other way round; that way its more obvious that you reached the end of a gallery (&#8220;I&#8217;ve seen that one already&#8221; instead of &#8220;Why isn&#8217;t anything happening?&#8221;)</li>
<li>A loading indicator is displayed when loading takes more then 250ms. That way you won&#8217;t see it most of the time, just in those cases where you&#8217;d otherwise wonder if anything is happening at all</li>
<li>The jQuery UI &#8220;drop&#8217;&#8221; effect is used by default to rotate images in a gallery, giving the slight illusion of a slide-projector, therefore giving the viewer a more natural/human feel</li>
<li>Images that are too big are resized to fit into the browser window; that also happens when the browser window is resized while the viewer is open</li>
<li>The markup is very simply, therefore easy to style: There is one element for the overlay (currently buggy in IE6), one container element containing the canvas-shadow element as well as the actual image (by default styled with 15px rounded white borders)</li>
</ul>
<p>I&#8217;d like to hear your feedback! Post a comment here, <a href="mailto:joern.zaefferer+photoviewer@gmail.com">send me an email</a>, or participate on the <a href="http://wiki.jqueryui.com/Photoviewer">planning wiki page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://bassistance.de/2009/06/02/labs-preview-jquery-ui-photoviewer/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>
