<?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: How to paginate, sort and search a table with Ajax and Rails (JQuery Style with will_paginate plugin)</title>
	<atom:link href="http://railstrip.ourgreatjourney.com/how-to-paginate-sort-and-search-a-table-with-ajax-and-rails-jquery-style/feed/" rel="self" type="application/rss+xml" />
	<link>http://railstrip.ourgreatjourney.com/how-to-paginate-sort-and-search-a-table-with-ajax-and-rails-jquery-style/</link>
	<description>My Ruby trip on Rails</description>
	<pubDate>Tue, 07 Sep 2010 02:51:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Mutas</title>
		<link>http://railstrip.ourgreatjourney.com/how-to-paginate-sort-and-search-a-table-with-ajax-and-rails-jquery-style/comment-page-1/#comment-22</link>
		<dc:creator>Mutas</dc:creator>
		<pubDate>Sun, 27 Jun 2010 14:21:01 +0000</pubDate>
		<guid isPermaLink="false">http://railstrip.ourgreatjourney.com/?p=66#comment-22</guid>
		<description>hi,

but it says that can not find @accounts
what is the problem???</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>but it says that can not find @accounts<br />
what is the problem???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://railstrip.ourgreatjourney.com/how-to-paginate-sort-and-search-a-table-with-ajax-and-rails-jquery-style/comment-page-1/#comment-15</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Fri, 05 Mar 2010 15:57:13 +0000</pubDate>
		<guid isPermaLink="false">http://railstrip.ourgreatjourney.com/?p=66#comment-15</guid>
		<description>Just a note. I also added the following to preserve the filter when using pagination...

 { :query =&gt; params[:query], :filter =&gt; params[:filter] } } %&gt;</description>
		<content:encoded><![CDATA[<p>Just a note. I also added the following to preserve the filter when using pagination&#8230;</p>
<p> { :query =&gt; params[:query], :filter =&gt; params[:filter] } } %&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://railstrip.ourgreatjourney.com/how-to-paginate-sort-and-search-a-table-with-ajax-and-rails-jquery-style/comment-page-1/#comment-13</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Thu, 04 Feb 2010 13:35:01 +0000</pubDate>
		<guid isPermaLink="false">http://railstrip.ourgreatjourney.com/?p=66#comment-13</guid>
		<description>Hmm.. the previous post is supposed to read

replace

&lt;%= will_paginate @accounts %&gt;

with

&lt;%= will_paginate @accounts, { :params =&gt; { :query =&gt; params[:query] } } %&gt;</description>
		<content:encoded><![CDATA[<p>Hmm.. the previous post is supposed to read</p>
<p>replace</p>
<p>&lt;%= will_paginate @accounts %&gt;</p>
<p>with</p>
<p>&lt;%= will_paginate @accounts, { :params =&gt; { :query =&gt; params[:query] } } %&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://railstrip.ourgreatjourney.com/how-to-paginate-sort-and-search-a-table-with-ajax-and-rails-jquery-style/comment-page-1/#comment-12</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Thu, 04 Feb 2010 13:32:11 +0000</pubDate>
		<guid isPermaLink="false">http://railstrip.ourgreatjourney.com/?p=66#comment-12</guid>
		<description>Great stuff, Chris, but I had to make a very minor change to preserve the query and make pagination work for data subsets :

replace



with

 { :query =&gt; params[:query] } } %&gt;

This makes sure the query lives on.

Very nice, clean code otherwise, thanks again.</description>
		<content:encoded><![CDATA[<p>Great stuff, Chris, but I had to make a very minor change to preserve the query and make pagination work for data subsets :</p>
<p>replace</p>
<p>with</p>
<p> { :query =&gt; params[:query] } } %&gt;</p>
<p>This makes sure the query lives on.</p>
<p>Very nice, clean code otherwise, thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dude</title>
		<link>http://railstrip.ourgreatjourney.com/how-to-paginate-sort-and-search-a-table-with-ajax-and-rails-jquery-style/comment-page-1/#comment-10</link>
		<dc:creator>Dude</dc:creator>
		<pubDate>Tue, 15 Dec 2009 13:34:32 +0000</pubDate>
		<guid isPermaLink="false">http://railstrip.ourgreatjourney.com/?p=66#comment-10</guid>
		<description>The last comment ate my &lt;%= will_paginate @accounts%&gt; tag</description>
		<content:encoded><![CDATA[<p>The last comment ate my &lt;%= will_paginate @accounts%&gt; tag</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dude</title>
		<link>http://railstrip.ourgreatjourney.com/how-to-paginate-sort-and-search-a-table-with-ajax-and-rails-jquery-style/comment-page-1/#comment-9</link>
		<dc:creator>Dude</dc:creator>
		<pubDate>Tue, 15 Dec 2009 13:33:13 +0000</pubDate>
		<guid isPermaLink="false">http://railstrip.ourgreatjourney.com/?p=66#comment-9</guid>
		<description>Hi: Sorting with ajax works great now! But using  produces normal links which produce a GET request on click. The actual sorting column isn't transferred. So everything messes up.
How did you manage jumping to the next page using ajax?</description>
		<content:encoded><![CDATA[<p>Hi: Sorting with ajax works great now! But using  produces normal links which produce a GET request on click. The actual sorting column isn&#8217;t transferred. So everything messes up.<br />
How did you manage jumping to the next page using ajax?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://railstrip.ourgreatjourney.com/how-to-paginate-sort-and-search-a-table-with-ajax-and-rails-jquery-style/comment-page-1/#comment-8</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Sun, 29 Nov 2009 22:29:03 +0000</pubDate>
		<guid isPermaLink="false">http://railstrip.ourgreatjourney.com/?p=66#comment-8</guid>
		<description>Just a note, I tested this on IE and it worked fine. It must be a configuration issue.</description>
		<content:encoded><![CDATA[<p>Just a note, I tested this on IE and it worked fine. It must be a configuration issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Sund</title>
		<link>http://railstrip.ourgreatjourney.com/how-to-paginate-sort-and-search-a-table-with-ajax-and-rails-jquery-style/comment-page-1/#comment-6</link>
		<dc:creator>Chris Sund</dc:creator>
		<pubDate>Wed, 18 Nov 2009 15:21:32 +0000</pubDate>
		<guid isPermaLink="false">http://railstrip.ourgreatjourney.com/?p=66#comment-6</guid>
		<description>Also, Daniel, can you post the error message. - Thanks!</description>
		<content:encoded><![CDATA[<p>Also, Daniel, can you post the error message. - Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://railstrip.ourgreatjourney.com/how-to-paginate-sort-and-search-a-table-with-ajax-and-rails-jquery-style/comment-page-1/#comment-5</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Wed, 18 Nov 2009 02:31:58 +0000</pubDate>
		<guid isPermaLink="false">http://railstrip.ourgreatjourney.com/?p=66#comment-5</guid>
		<description>Hey Daniel,

Can you post your controller and view code somewhere? I'm coding this on my local machine currently and haven't tried it on IE yet. I will give it a try tomorrow and see if I can reproduce the problem. 

Thanks for the post!
Chris</description>
		<content:encoded><![CDATA[<p>Hey Daniel,</p>
<p>Can you post your controller and view code somewhere? I&#8217;m coding this on my local machine currently and haven&#8217;t tried it on IE yet. I will give it a try tomorrow and see if I can reproduce the problem. </p>
<p>Thanks for the post!<br />
Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://railstrip.ourgreatjourney.com/how-to-paginate-sort-and-search-a-table-with-ajax-and-rails-jquery-style/comment-page-1/#comment-4</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Mon, 16 Nov 2009 15:36:47 +0000</pubDate>
		<guid isPermaLink="false">http://railstrip.ourgreatjourney.com/?p=66#comment-4</guid>
		<description>One more thing, I'm using will_paginate with ajax "RemoteLinkRenderer" ... the error only happens in IE ... Firefox works fine</description>
		<content:encoded><![CDATA[<p>One more thing, I&#8217;m using will_paginate with ajax &#8220;RemoteLinkRenderer&#8221; &#8230; the error only happens in IE &#8230; Firefox works fine</p>
]]></content:encoded>
	</item>
</channel>
</rss>
