<?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: Flexigrid jQuery plugin: extending to allow sorting of static grids</title>
	<atom:link href="http://pixelnix.com/flexigrid-jquery-plugin-extending-to-allow-sorting-of-static-grids/feed/" rel="self" type="application/rss+xml" />
	<link>http://pixelnix.com/flexigrid-jquery-plugin-extending-to-allow-sorting-of-static-grids/</link>
	<description></description>
	<lastBuildDate>Thu, 03 Nov 2011 16:57:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: greg</title>
		<link>http://pixelnix.com/flexigrid-jquery-plugin-extending-to-allow-sorting-of-static-grids/comment-page-1/#comment-6282</link>
		<dc:creator>greg</dc:creator>
		<pubDate>Thu, 03 Nov 2011 16:57:36 +0000</pubDate>
		<guid isPermaLink="false">http://pixelnix.com/?p=74#comment-6282</guid>
		<description>Can you send me out a patched version? I would really appreciate it.</description>
		<content:encoded><![CDATA[<p>Can you send me out a patched version? I would really appreciate it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: steve</title>
		<link>http://pixelnix.com/flexigrid-jquery-plugin-extending-to-allow-sorting-of-static-grids/comment-page-1/#comment-3112</link>
		<dc:creator>steve</dc:creator>
		<pubDate>Wed, 20 Apr 2011 01:53:48 +0000</pubDate>
		<guid isPermaLink="false">http://pixelnix.com/?p=74#comment-3112</guid>
		<description>I would pay good money for a js flexigrid file that could sort. Been trying to get this to work for hours... Please post or email me... (s.woods@yahoo.com)</description>
		<content:encoded><![CDATA[<p>I would pay good money for a js flexigrid file that could sort. Been trying to get this to work for hours&#8230; Please post or email me&#8230; (s.woods@yahoo.com)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: steve</title>
		<link>http://pixelnix.com/flexigrid-jquery-plugin-extending-to-allow-sorting-of-static-grids/comment-page-1/#comment-3111</link>
		<dc:creator>steve</dc:creator>
		<pubDate>Wed, 20 Apr 2011 01:50:21 +0000</pubDate>
		<guid isPermaLink="false">http://pixelnix.com/?p=74#comment-3111</guid>
		<description>Do you have a link to the patched js?</description>
		<content:encoded><![CDATA[<p>Do you have a link to the patched js?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rajiv</title>
		<link>http://pixelnix.com/flexigrid-jquery-plugin-extending-to-allow-sorting-of-static-grids/comment-page-1/#comment-1388</link>
		<dc:creator>rajiv</dc:creator>
		<pubDate>Tue, 28 Dec 2010 15:30:45 +0000</pubDate>
		<guid isPermaLink="false">http://pixelnix.com/?p=74#comment-1388</guid>
		<description>Thanks a lot, it work great. 
We can even use this for non-static data as well. 
I don&#039;t think we require to fetch sorting result from server at all.

I also make inPlaceSort with  a flag:

if (p.onChangeSort)
                    p.onChangeSort(p.sortname, p.sortorder);
                else if(!p.url &#124;&#124; p.inPlaceSort)
                    this.inPlaceSort();
                else
                    this.populate();

And define inPlaceSort to true .</description>
		<content:encoded><![CDATA[<p>Thanks a lot, it work great.<br />
We can even use this for non-static data as well.<br />
I don&#8217;t think we require to fetch sorting result from server at all.</p>
<p>I also make inPlaceSort with  a flag:</p>
<p>if (p.onChangeSort)<br />
                    p.onChangeSort(p.sortname, p.sortorder);<br />
                else if(!p.url || p.inPlaceSort)<br />
                    this.inPlaceSort();<br />
                else<br />
                    this.populate();</p>
<p>And define inPlaceSort to true .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sp2hari</title>
		<link>http://pixelnix.com/flexigrid-jquery-plugin-extending-to-allow-sorting-of-static-grids/comment-page-1/#comment-1341</link>
		<dc:creator>sp2hari</dc:creator>
		<pubDate>Fri, 24 Dec 2010 13:12:59 +0000</pubDate>
		<guid isPermaLink="false">http://pixelnix.com/?p=74#comment-1341</guid>
		<description>Awesome work. Have 1 doubts about flexigrid + 1 suggestion to your plugin..

Suggestion : The above code doesn&#039;t consider the background if we use the striped feature. 
The following code kind of fixes it. 


                $.each(rows, function() {
                    if (i % 2 &amp;&amp; p.striped) $(this).addClass(&#039;erow&#039;);
                    else $(this).removeClass(&#039;erow&#039;);
                    $(parent).append(this);
                    i = i + 1;
                });


My Question : Is is possible to have pagination when I don&#039;t have dynamic table using ajax? If no, then do I need to write a function like above??</description>
		<content:encoded><![CDATA[<p>Awesome work. Have 1 doubts about flexigrid + 1 suggestion to your plugin..</p>
<p>Suggestion : The above code doesn&#8217;t consider the background if we use the striped feature.<br />
The following code kind of fixes it. </p>
<p>                $.each(rows, function() {<br />
                    if (i % 2 &amp;&amp; p.striped) $(this).addClass(&#8216;erow&#8217;);<br />
                    else $(this).removeClass(&#8216;erow&#8217;);<br />
                    $(parent).append(this);<br />
                    i = i + 1;<br />
                });</p>
<p>My Question : Is is possible to have pagination when I don&#8217;t have dynamic table using ajax? If no, then do I need to write a function like above??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://pixelnix.com/flexigrid-jquery-plugin-extending-to-allow-sorting-of-static-grids/comment-page-1/#comment-1122</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Tue, 30 Nov 2010 21:29:24 +0000</pubDate>
		<guid isPermaLink="false">http://pixelnix.com/?p=74#comment-1122</guid>
		<description>I never did receive an email from you; and I searched for your name in my gmail spam but nothing came up.  So if you tried to send me that example, uh.... try again, I guess.</description>
		<content:encoded><![CDATA[<p>I never did receive an email from you; and I searched for your name in my gmail spam but nothing came up.  So if you tried to send me that example, uh&#8230;. try again, I guess.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alok swain</title>
		<link>http://pixelnix.com/flexigrid-jquery-plugin-extending-to-allow-sorting-of-static-grids/comment-page-1/#comment-1041</link>
		<dc:creator>alok swain</dc:creator>
		<pubDate>Mon, 22 Nov 2010 06:41:56 +0000</pubDate>
		<guid isPermaLink="false">http://pixelnix.com/?p=74#comment-1041</guid>
		<description>The sorting is working. But probably I have made some errors. When i click on row headers it does not sort immediately. It sorts when I click on the header for the second time.</description>
		<content:encoded><![CDATA[<p>The sorting is working. But probably I have made some errors. When i click on row headers it does not sort immediately. It sorts when I click on the header for the second time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alok swain</title>
		<link>http://pixelnix.com/flexigrid-jquery-plugin-extending-to-allow-sorting-of-static-grids/comment-page-1/#comment-1040</link>
		<dc:creator>alok swain</dc:creator>
		<pubDate>Mon, 22 Nov 2010 06:40:56 +0000</pubDate>
		<guid isPermaLink="false">http://pixelnix.com/?p=74#comment-1040</guid>
		<description>Minor update, I applied the patch by hand.</description>
		<content:encoded><![CDATA[<p>Minor update, I applied the patch by hand.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alok swain</title>
		<link>http://pixelnix.com/flexigrid-jquery-plugin-extending-to-allow-sorting-of-static-grids/comment-page-1/#comment-1039</link>
		<dc:creator>alok swain</dc:creator>
		<pubDate>Mon, 22 Nov 2010 06:38:40 +0000</pubDate>
		<guid isPermaLink="false">http://pixelnix.com/?p=74#comment-1039</guid>
		<description>Hi Nick,

Thanks for the reply. I will send out a patched version of my flexigrid.js and a sample html file over email. I am not good at javascript and so I will try to get all my doubts clear in my head and the approach I followed to get sort working after going through the source once more. Please bear with me and the delay. I will revert back to your email. Thanks a lot again.</description>
		<content:encoded><![CDATA[<p>Hi Nick,</p>
<p>Thanks for the reply. I will send out a patched version of my flexigrid.js and a sample html file over email. I am not good at javascript and so I will try to get all my doubts clear in my head and the approach I followed to get sort working after going through the source once more. Please bear with me and the delay. I will revert back to your email. Thanks a lot again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://pixelnix.com/flexigrid-jquery-plugin-extending-to-allow-sorting-of-static-grids/comment-page-1/#comment-1021</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Fri, 19 Nov 2010 22:31:26 +0000</pubDate>
		<guid isPermaLink="false">http://pixelnix.com/?p=74#comment-1021</guid>
		<description>Hi Alok,

Hard to make a suggestion unless I can see what&#039;s going wrong.  Did you use gnu patch to apply the patch, or do it by hand?

Why don&#039;t you shoot me an email (address is easily found here on the website) and hopefully I can help you sort it out.  Send your patched version of flexigrid.js and some simple example HTML/javascript that shows the problem.</description>
		<content:encoded><![CDATA[<p>Hi Alok,</p>
<p>Hard to make a suggestion unless I can see what&#8217;s going wrong.  Did you use gnu patch to apply the patch, or do it by hand?</p>
<p>Why don&#8217;t you shoot me an email (address is easily found here on the website) and hopefully I can help you sort it out.  Send your patched version of flexigrid.js and some simple example HTML/javascript that shows the problem.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

