<?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 for Luke Dingle . com</title>
	<atom:link href="http://www.lukedingle.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lukedingle.com</link>
	<description>Turn over a playful leaf on web design</description>
	<lastBuildDate>Sat, 06 Mar 2010 19:35:38 +1100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Set up a Linux/Django environment &#8211; on Windows by Greg Metsker</title>
		<link>http://www.lukedingle.com/django/set-up-a-linuxdjango-environment-on-windows/comment-page-1/#comment-302</link>
		<dc:creator>Greg Metsker</dc:creator>
		<pubDate>Sat, 06 Mar 2010 19:35:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.lukedingle.com/?p=138#comment-302</guid>
		<description>Thanks for this post. I am new at python and this is a big help.</description>
		<content:encoded><![CDATA[<p>Thanks for this post. I am new at python and this is a big help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sortable table rows with jQuery &#8211; Draggable rows by Stacey</title>
		<link>http://www.lukedingle.com/javascript/sortable-table-rows-with-jquery-draggable-rows/comment-page-1/#comment-301</link>
		<dc:creator>Stacey</dc:creator>
		<pubDate>Fri, 26 Feb 2010 08:07:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.lukedingle.com/?p=190#comment-301</guid>
		<description>Working on a project and playing around with the idea of a sortable table... As of now I have it sorting every table row within the specified table. However, I have a checkbox in a cell that - if clicked - that the information in that row gets included for database entry.... 

Pseudo: If the checkbox isn&#039;t clicked, the information from that row should be overlooked, not validated, not put into the database - and therefore not relevant to the sort.... I&#039;ve read through the code a few times, and I&#039;m not sure where to throw the IF statement. Or maybe I should be calling something from your functions in the click function of my checkbox instead...

Ugh - I think I&#039;ve gone cross-eyed. I&#039;m a newbie (to jQuery anyway) and could just use a kick in the right direction....

Before my self-absorbed being forgets - THANK YOU for the verbose commenting! I wish more tutorials did that.</description>
		<content:encoded><![CDATA[<p>Working on a project and playing around with the idea of a sortable table&#8230; As of now I have it sorting every table row within the specified table. However, I have a checkbox in a cell that &#8211; if clicked &#8211; that the information in that row gets included for database entry&#8230;. </p>
<p>Pseudo: If the checkbox isn&#8217;t clicked, the information from that row should be overlooked, not validated, not put into the database &#8211; and therefore not relevant to the sort&#8230;. I&#8217;ve read through the code a few times, and I&#8217;m not sure where to throw the IF statement. Or maybe I should be calling something from your functions in the click function of my checkbox instead&#8230;</p>
<p>Ugh &#8211; I think I&#8217;ve gone cross-eyed. I&#8217;m a newbie (to jQuery anyway) and could just use a kick in the right direction&#8230;.</p>
<p>Before my self-absorbed being forgets &#8211; THANK YOU for the verbose commenting! I wish more tutorials did that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sortable table rows with jQuery. by anusuya</title>
		<link>http://www.lukedingle.com/javascript/sortable-table-rows-with-jquery/comment-page-1/#comment-300</link>
		<dc:creator>anusuya</dc:creator>
		<pubDate>Thu, 25 Feb 2010 12:15:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.lukedingle.com/?p=166#comment-300</guid>
		<description>Hai ,
this code is not working for me.
I got error in  and $(document).ready( function () {</description>
		<content:encoded><![CDATA[<p>Hai ,<br />
this code is not working for me.<br />
I got error in  and $(document).ready( function () {</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sortable table rows with jQuery &#8211; Draggable rows by Colin</title>
		<link>http://www.lukedingle.com/javascript/sortable-table-rows-with-jquery-draggable-rows/comment-page-1/#comment-299</link>
		<dc:creator>Colin</dc:creator>
		<pubDate>Mon, 08 Feb 2010 14:31:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.lukedingle.com/?p=190#comment-299</guid>
		<description>Hi, I&#039;m liking this, it&#039;d certainly a little more elegant than using jquery UI. I did run into the same problem that Jonathan did with input boxes, but think I have a slightly more elegant solution to the problem. All you need to do is to call stopPropagation() on the mousedown events of any input elements in the table.

IE: 
$(document).ready(function() {
	$(&#039;table tbody tr input&#039;).mousedown(function (e) {
		e.stopPropagation();
	});
});

That way you can still drag the table from any area except an input box, and input boxes get focus properly. I&#039;ve not tested if the same problem appears with textareas or select boxes, but I&#039;d imagine that if it did then replacing input with, or amending to input with, select, textarea, or any other problem element&#039;s tag in the above code would fix them.</description>
		<content:encoded><![CDATA[<p>Hi, I&#8217;m liking this, it&#8217;d certainly a little more elegant than using jquery UI. I did run into the same problem that Jonathan did with input boxes, but think I have a slightly more elegant solution to the problem. All you need to do is to call stopPropagation() on the mousedown events of any input elements in the table.</p>
<p>IE:<br />
$(document).ready(function() {<br />
	$(&#8217;table tbody tr input&#8217;).mousedown(function (e) {<br />
		e.stopPropagation();<br />
	});<br />
});</p>
<p>That way you can still drag the table from any area except an input box, and input boxes get focus properly. I&#8217;ve not tested if the same problem appears with textareas or select boxes, but I&#8217;d imagine that if it did then replacing input with, or amending to input with, select, textarea, or any other problem element&#8217;s tag in the above code would fix them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sortable table rows with jQuery &#8211; Draggable rows by irfan</title>
		<link>http://www.lukedingle.com/javascript/sortable-table-rows-with-jquery-draggable-rows/comment-page-1/#comment-298</link>
		<dc:creator>irfan</dc:creator>
		<pubDate>Fri, 15 Jan 2010 14:22:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.lukedingle.com/?p=190#comment-298</guid>
		<description>Hi

Very nice script

but one problem i am facing if i am dragging rows then the vertical scroll should work automatically after reaching the div ends but its not working 
can anybody please help me on this

thanks
irfan</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>Very nice script</p>
<p>but one problem i am facing if i am dragging rows then the vertical scroll should work automatically after reaching the div ends but its not working<br />
can anybody please help me on this</p>
<p>thanks<br />
irfan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sortable table rows with jQuery &#8211; Draggable rows by Ami</title>
		<link>http://www.lukedingle.com/javascript/sortable-table-rows-with-jquery-draggable-rows/comment-page-1/#comment-297</link>
		<dc:creator>Ami</dc:creator>
		<pubDate>Tue, 12 Jan 2010 18:45:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.lukedingle.com/?p=190#comment-297</guid>
		<description>This is really amazing. I am a beginner and found this really interesting. Thanks a lot for posting this. Cheers!!!</description>
		<content:encoded><![CDATA[<p>This is really amazing. I am a beginner and found this really interesting. Thanks a lot for posting this. Cheers!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sortable table rows with jQuery &#8211; Draggable rows by himanshu</title>
		<link>http://www.lukedingle.com/javascript/sortable-table-rows-with-jquery-draggable-rows/comment-page-1/#comment-296</link>
		<dc:creator>himanshu</dc:creator>
		<pubDate>Mon, 04 Jan 2010 10:18:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.lukedingle.com/?p=190#comment-296</guid>
		<description>The simpler way will be to use ui-sortable of jquery and set the option(item:&#039;tr&#039;)
e.g
$(function() {
		$(&quot;#formName\\:selector&quot;).sortable({
			revert: true  ,items: &#039;tr&#039;,});
});


    
        
           PositionNameColourAn extra column
        
    
    
        
            1GeraldoPink Extra content
        
        
            2LorenzoGreen Extra content
        
        
            3FlamingoBlue Extra content
        
        
            4DenyaRed Extra content
        
    
</description>
		<content:encoded><![CDATA[<p>The simpler way will be to use ui-sortable of jquery and set the option(item:&#8217;tr&#8217;)<br />
e.g<br />
$(function() {<br />
		$(&#8221;#formName\\:selector&#8221;).sortable({<br />
			revert: true  ,items: &#8216;tr&#8217;,});<br />
});</p>
<p>           PositionNameColourAn extra column</p>
<p>            1GeraldoPink Extra content</p>
<p>            2LorenzoGreen Extra content</p>
<p>            3FlamingoBlue Extra content</p>
<p>            4DenyaRed Extra content</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sortable table rows with jQuery &#8211; Draggable rows by rod</title>
		<link>http://www.lukedingle.com/javascript/sortable-table-rows-with-jquery-draggable-rows/comment-page-1/#comment-295</link>
		<dc:creator>rod</dc:creator>
		<pubDate>Sun, 03 Jan 2010 15:40:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.lukedingle.com/?p=190#comment-295</guid>
		<description>This works perfectly!
I have a question though. How can you drag and drop the table row to a another table?</description>
		<content:encoded><![CDATA[<p>This works perfectly!<br />
I have a question though. How can you drag and drop the table row to a another table?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A JavaScript Cat by Steve Stevenson</title>
		<link>http://www.lukedingle.com/the-javascript-cat/a-javascript-cat/comment-page-1/#comment-294</link>
		<dc:creator>Steve Stevenson</dc:creator>
		<pubDate>Sun, 20 Dec 2009 21:42:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.lukedingle.com/?p=15#comment-294</guid>
		<description>I just wanted to say thanks! I was surfing on Yahoo when I found this site. After checking out your site I&#039;ve come up with some great ideas for a new blog. I just thought I&#039;d let you in on it</description>
		<content:encoded><![CDATA[<p>I just wanted to say thanks! I was surfing on Yahoo when I found this site. After checking out your site I&#8217;ve come up with some great ideas for a new blog. I just thought I&#8217;d let you in on it</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sortable table rows with jQuery &#8211; Draggable rows by zantor</title>
		<link>http://www.lukedingle.com/javascript/sortable-table-rows-with-jquery-draggable-rows/comment-page-1/#comment-293</link>
		<dc:creator>zantor</dc:creator>
		<pubDate>Wed, 02 Dec 2009 01:01:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.lukedingle.com/?p=190#comment-293</guid>
		<description>Rakuli, try to add border to your table. In this case, when we switch drag direction, we loose first switch. I made some changes to your script, and format it as jQuery plugin. Imho, it&#039;s unnecessary to remember mouse position, we can just check rowIndex.
You can see example here: http://e1f.ho.ua/js/tablesort.js</description>
		<content:encoded><![CDATA[<p>Rakuli, try to add border to your table. In this case, when we switch drag direction, we loose first switch. I made some changes to your script, and format it as jQuery plugin. Imho, it&#8217;s unnecessary to remember mouse position, we can just check rowIndex.<br />
You can see example here: <a href="http://e1f.ho.ua/js/tablesort.js" rel="nofollow">http://e1f.ho.ua/js/tablesort.js</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
