<?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>Tristan Botly &#187; jquery</title>
	<atom:link href="http://www.tristanbotly.com/tag/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tristanbotly.com</link>
	<description>A digital project manager and Wordpress advocate living in Bangkok</description>
	<lastBuildDate>Tue, 08 Jun 2010 03:52:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language></language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Ultimate guide to table UI patterns</title>
		<link>http://www.tristanbotly.com/ultimate-guide-to-table-ui-patterns/</link>
		<comments>http://www.tristanbotly.com/ultimate-guide-to-table-ui-patterns/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 05:13:36 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[User Interface]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[tables]]></category>

		<guid isPermaLink="false">http://www.tristanbotly.com/?p=147</guid>
		<description><![CDATA[A great article from a website I follow.
It covers a few tips and tricks on table user interface, some are obvious which is by no means a bad thing as it is handy to have them all in one place.  I know as I looked down the list I got a few ideas for [...]]]></description>
			<content:encoded><![CDATA[<p>A great article from a website I follow.</p>
<p>It covers a few tips and tricks on table user interface, some are obvious which is by no means a bad thing as it is handy to have them all in one place.  I know as I looked down the list I got a few ideas for my Homespace Project I am working on at the minute.</p>
<h4>Here are the highlights:</h4>
<p><strong>Alternating rows styling</strong><br />
<em>Make the table easy to read and follow</em></p>
<p><strong>Full row selection</strong><br />
<em>Ability to select the whole row and perform a task across it makes working on a daily basis faster</em></p>
<p><strong>Table sections</strong><br />
<em>Group similar data in a clear and easily manageable manner</em><br />
<em>Obvious but implemented correctly a busy page can be transformed into a working application</em></p>
<p><strong>Sorting</strong><br />
<em>Column sorting e.g. ascending price&#8230; VERY IMPORTANT</em></p>
<p><strong>Filtering</strong><br />
<em>Filter your results, I find now with the possibilities in javascript this is a great tool as I am now able to deal with so much information on one page.  For me this replaces search.</em></p>
<p><strong>Pagination</strong><br />
<em>As far as I am concerned pagination is a non javascript replacement however this may be a view not held by many customers which may find my love of dynamic content irritating</em></p>
<p><strong>Continuous scrolling</strong><br />
<em>The idea of loading in content whilst the user scrolls, I love this but not sure if mass market users would rather avoid sites being too clever</em><br />
<em>It also might be the same as streaming video, it is fine but sometimes you just want the whole thing to load / jump to the relevant content.  I would imagine visiting a site a second time and waiting till your item loads might actually be irritating</em></p>
<p><strong>Fixed table header</strong><br />
<em>Make the header follow you down the page, I don&#8217;t think this is done enough and I don&#8217;t believe there are any usability issues around it</em></p>
<p><strong>Expandable Rows</strong><br />
<em>This is a nice idea, making it easy to browse lots of content until you found the one you liked.</em></p>
<p><strong>Row actions</strong><br />
<em>This section is a must read, most sites now employ these techniques so it you are not up on it then you are missing out</em></p>
<p>So that is my view on the article, please check it out and I hope it helps get you thinking about a few ways to treat your next project.</p>
<p><a href="http://www.jankoatwarpspeed.com/post/2010/02/26/table-ui-patterns.aspx" target="_blank">Table UI Patterns Original Article</a></p>
<a href="http://www.google.com/reader/link?url=http://www.tristanbotly.com/?p=147&title=Ultimate+guide+to+table+UI+patterns&snippet=A+great+article+from+a+website+I+follow.%0D%0A%0D%0AIt+covers+a+few+tips+and+tricks+on+table+user+interface%2C+some+are+obvious+which+is+b...&srcURL=http://www.tristanbotly.com&srcTitle=Tristan Botly" target="_blank" ><img align="right" alt="Buzz it!" src="http://www.tristanbotly.com/wp-content/plugins/buzz-it/images/buzz-icon.png" border="0" style="border: 0px;" /></a><br clear="all" />]]></content:encoded>
			<wfw:commentRss>http://www.tristanbotly.com/ultimate-guide-to-table-ui-patterns/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>JQuery &#8211; Simple IE 6 Detection</title>
		<link>http://www.tristanbotly.com/jquery-simple-ie-6-detection/</link>
		<comments>http://www.tristanbotly.com/jquery-simple-ie-6-detection/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 03:48:50 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[tech-titbit]]></category>
		<category><![CDATA[internet explorer 6]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.tristanbotly.com/jquery-simple-ie-6-detection/</guid>
		<description><![CDATA[A simple way to detect whether the web browser you are using is IE 6, this way allows any version of IE 6 to be picked up.
I&#8217;m sure there is a clearer way to do this so please feel free to improve but this certainly works.

$(document).ready(function() {
        ie6catch [...]]]></description>
			<content:encoded><![CDATA[<p>A simple way to detect whether the web browser you are using is IE 6, this way allows any version of IE 6 to be picked up.</p>
<p>I&#8217;m sure there is a clearer way to do this so please feel free to improve but this certainly works.</p>
<p><code><br />
$(document).ready(function() {</p>
<p>        ie6catch = $.browser.msie + $.browser.version;<br />
	if (ie6catch.indexOf("true6") == -1) {<br />
                   alert("This is not Internet Explorer 6");<br />
        }<br />
});<br />
</code></p>
<a href="http://www.google.com/reader/link?url=http://www.tristanbotly.com/jquery-simple-ie-6-detection/&title=JQuery+-+Simple+IE+6+Detection&snippet=A+simple+way+to+detect+whether+the+web+browser+you+are+using+is+IE+6%2C+this+way+allows+any+version+of+IE+6+to+be+picked+up.%0D%0A%0D%0AI%27...&srcURL=http://www.tristanbotly.com&srcTitle=Tristan Botly" target="_blank" ><img align="right" alt="Buzz it!" src="http://www.tristanbotly.com/wp-content/plugins/buzz-it/images/buzz-icon.png" border="0" style="border: 0px;" /></a><br clear="all" />]]></content:encoded>
			<wfw:commentRss>http://www.tristanbotly.com/jquery-simple-ie-6-detection/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

