<?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: jQuery Column Filters</title>
	<atom:link href="http://tomcoote.co.uk/code-bank/jquery-column-filters/feed/" rel="self" type="application/rss+xml" />
	<link>http://tomcoote.co.uk</link>
	<description>An ace web developer!</description>
	<lastBuildDate>Mon, 14 May 2012 13:35:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: sri</title>
		<link>http://tomcoote.co.uk/code-bank/jquery-column-filters/comment-page-1/#comment-49154</link>
		<dc:creator>sri</dc:creator>
		<pubDate>Wed, 11 Apr 2012 09:37:24 +0000</pubDate>
		<guid isPermaLink="false">http://cootetom.co.uk/?page_id=65#comment-49154</guid>
		<description>i got the solution ..thanks..</description>
		<content:encoded><![CDATA[<p>i got the solution ..thanks..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sri</title>
		<link>http://tomcoote.co.uk/code-bank/jquery-column-filters/comment-page-1/#comment-48976</link>
		<dc:creator>sri</dc:creator>
		<pubDate>Tue, 10 Apr 2012 10:50:11 +0000</pubDate>
		<guid isPermaLink="false">http://cootetom.co.uk/?page_id=65#comment-48976</guid>
		<description>Tom,

Thanks for the reply, but i am new to jquery, and i just used the plugin... if possible if u can provide me the code snippet, will be helpful for me...</description>
		<content:encoded><![CDATA[<p>Tom,</p>
<p>Thanks for the reply, but i am new to jquery, and i just used the plugin&#8230; if possible if u can provide me the code snippet, will be helpful for me&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Coote</title>
		<link>http://tomcoote.co.uk/code-bank/jquery-column-filters/comment-page-1/#comment-48962</link>
		<dc:creator>Tom Coote</dc:creator>
		<pubDate>Tue, 10 Apr 2012 08:31:35 +0000</pubDate>
		<guid isPermaLink="false">http://cootetom.co.uk/?page_id=65#comment-48962</guid>
		<description>You&#039;ll need to implement a callback function as one of the plugin options so that it can be called once the filter has finished. Then in that function you could count the visible rows of the table and put that information onto the page.</description>
		<content:encoded><![CDATA[<p>You&#8217;ll need to implement a callback function as one of the plugin options so that it can be called once the filter has finished. Then in that function you could count the visible rows of the table and put that information onto the page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sri</title>
		<link>http://tomcoote.co.uk/code-bank/jquery-column-filters/comment-page-1/#comment-48960</link>
		<dc:creator>sri</dc:creator>
		<pubDate>Tue, 10 Apr 2012 08:25:35 +0000</pubDate>
		<guid isPermaLink="false">http://cootetom.co.uk/?page_id=65#comment-48960</guid>
		<description>Hi,

I want to count the number of rows in the table using this table column filter plugin, want to display how many entries are there just like  &#039;showing 6 entries&#039; want the same even after filtering. Suppose i will search for a particular key word and i get 2 matched search entries then i should display &#039;showing 2 entries&#039;. Same way i want to display this just below the table. 

Please help me anybody. I need this feature soon.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I want to count the number of rows in the table using this table column filter plugin, want to display how many entries are there just like  &#8217;showing 6 entries&#8217; want the same even after filtering. Suppose i will search for a particular key word and i get 2 matched search entries then i should display &#8217;showing 2 entries&#8217;. Same way i want to display this just below the table. </p>
<p>Please help me anybody. I need this feature soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Artem</title>
		<link>http://tomcoote.co.uk/code-bank/jquery-column-filters/comment-page-1/#comment-33966</link>
		<dc:creator>Artem</dc:creator>
		<pubDate>Thu, 22 Dec 2011 13:31:40 +0000</pubDate>
		<guid isPermaLink="false">http://cootetom.co.uk/?page_id=65#comment-33966</guid>
		<description>Работает прекрасно!
Спасибо.</description>
		<content:encoded><![CDATA[<p>Работает прекрасно!<br />
Спасибо.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Artem</title>
		<link>http://tomcoote.co.uk/code-bank/jquery-column-filters/comment-page-1/#comment-33965</link>
		<dc:creator>Artem</dc:creator>
		<pubDate>Thu, 22 Dec 2011 13:30:30 +0000</pubDate>
		<guid isPermaLink="false">http://cootetom.co.uk/?page_id=65#comment-33965</guid>
		<description>Если кому интересно

$(document).ready(function() {
    $(&#039;table#filterTable1&#039;).columnFilters({}, function() {
        var sum = 0;
        $(&#039;#filterTable1 td.sss:visible&#039;).each(function() {
            sum += parseInt($(this).html());
        });
        $(&#039;#filterTable1 td.sum&#039;).html(sum);
    });
});</description>
		<content:encoded><![CDATA[<p>Если кому интересно</p>
<p>$(document).ready(function() {<br />
    $(&#8216;table#filterTable1&#8242;).columnFilters({}, function() {<br />
        var sum = 0;<br />
        $(&#8216;#filterTable1 td.sss:visible&#8217;).each(function() {<br />
            sum += parseInt($(this).html());<br />
        });<br />
        $(&#8216;#filterTable1 td.sum&#8217;).html(sum);<br />
    });<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://tomcoote.co.uk/code-bank/jquery-column-filters/comment-page-1/#comment-30619</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Tue, 29 Nov 2011 16:20:54 +0000</pubDate>
		<guid isPermaLink="false">http://cootetom.co.uk/?page_id=65#comment-30619</guid>
		<description>Hi Tom,

I love the filters example but what happens when you want to search inside a column which has html in it.

For example, how do you get the filter to search on a value say 123 when the cell itself contains the value: &lt;a href=&quot;website&quot; rel=&quot;nofollow&quot;&gt;123&lt;/a&gt;?

Any ideas?

Thanks in advance,
Michael</description>
		<content:encoded><![CDATA[<p>Hi Tom,</p>
<p>I love the filters example but what happens when you want to search inside a column which has html in it.</p>
<p>For example, how do you get the filter to search on a value say 123 when the cell itself contains the value: <a href="website" rel="nofollow">123</a>?</p>
<p>Any ideas?</p>
<p>Thanks in advance,<br />
Michael</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Artem</title>
		<link>http://tomcoote.co.uk/code-bank/jquery-column-filters/comment-page-1/#comment-30579</link>
		<dc:creator>Artem</dc:creator>
		<pubDate>Tue, 29 Nov 2011 12:58:09 +0000</pubDate>
		<guid isPermaLink="false">http://cootetom.co.uk/?page_id=65#comment-30579</guid>
		<description>Tom, good time of day!
 I apologize for my English.

 Could you please describe in detail how to add code to find the sum of the column of the filtered values

 I am the second day of learning Javascript, and, unfortunately, was unable to practice your response to Nikolay

 I would be very grateful for your response.</description>
		<content:encoded><![CDATA[<p>Tom, good time of day!<br />
 I apologize for my English.</p>
<p> Could you please describe in detail how to add code to find the sum of the column of the filtered values</p>
<p> I am the second day of learning Javascript, and, unfortunately, was unable to practice your response to Nikolay</p>
<p> I would be very grateful for your response.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nikolay</title>
		<link>http://tomcoote.co.uk/code-bank/jquery-column-filters/comment-page-1/#comment-30560</link>
		<dc:creator>Nikolay</dc:creator>
		<pubDate>Tue, 29 Nov 2011 11:17:01 +0000</pubDate>
		<guid isPermaLink="false">http://cootetom.co.uk/?page_id=65#comment-30560</guid>
		<description>Thank&#039;s working greate!</description>
		<content:encoded><![CDATA[<p>Thank&#8217;s working greate!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Coote</title>
		<link>http://tomcoote.co.uk/code-bank/jquery-column-filters/comment-page-1/#comment-30366</link>
		<dc:creator>Tom Coote</dc:creator>
		<pubDate>Mon, 28 Nov 2011 09:31:25 +0000</pubDate>
		<guid isPermaLink="false">http://cootetom.co.uk/?page_id=65#comment-30366</guid>
		<description>You would need to implement that in the plugin. In the function named runFilters you would need to test for those characters in the sFilterTxt variable. For example;

var gt = /^ *&gt;/ig.test(sFilterTxt);

Then if the user wants greater than a number you&#039;d have to change the test for a cell match to parsing the value to an integer and then running the comparison.</description>
		<content:encoded><![CDATA[<p>You would need to implement that in the plugin. In the function named runFilters you would need to test for those characters in the sFilterTxt variable. For example;</p>
<p>var gt = /^ *>/ig.test(sFilterTxt);</p>
<p>Then if the user wants greater than a number you&#8217;d have to change the test for a cell match to parsing the value to an integer and then running the comparison.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

