<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
	<title>jQuery Grid Plugin - jqGrid - Topic: &#091;jqGrid 4.6&#093; Possible paging bug with grouping</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-4-6-possible-paging-bug-with-grouping</link>
	<description><![CDATA[Grid plugin]]></description>
	<generator>Simple:Press Version 5.7.5.3</generator>
	<atom:link href="http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-4-6-possible-paging-bug-with-grouping/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on &#091;jqGrid 4.6&#093; Possible paging bug with grouping</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-4-6-possible-paging-bug-with-grouping#p30818</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-4-6-possible-paging-bug-with-grouping#p30818</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Thanks for the investigation.<br />
Can you please post the full grid code and data?<br />
or I would prefer a link to the problem using the jqGrid source code and not obfuscated one.<br />
Thank you.</p>
<p>Kind Regards<br />
Tony</p>
]]></description>
        	        	<pubDate>Tue, 08 Jul 2014 12:22:29 +0300</pubDate>
        </item>
        <item>
        	<title>Davide Bologna on &#091;jqGrid 4.6&#093; Possible paging bug with grouping</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-4-6-possible-paging-bug-with-grouping#p30805</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-4-6-possible-paging-bug-with-grouping#p30805</guid>
        	        	<description><![CDATA[<p>I have a grid with grouping on one column. Data are loaded from a server using json. All works fine if data fits in the first page. All other pages are empty.</p>
<p>IÂ found a possible bug inÂ groupingRender @11783. This code loops on grdata to build the HTML string to output</p>
<div class="sfcode">
<pre class="brush-javascript syntax"> for(kk=sgr;kk&#60;end;kk++) {
    if(!grdata[kk - offset]) { break; }
    str += grdata[kk - offset].join('');
 }</pre></div><p>With a pagesize = 20, on page 2, <span>sgr</span> and <span>end</span> are alsoÂ 20. Looking at how th <span>kk</span> index is used i think the for test should be <span>kk &#60; end + offset<span>. Code now is</span></span></p>
<div class="sfcode">
<pre class="brush-javascript syntax">for(kk=sgr;kk&#60;end+offset;kk++) {
 if(!grdata[kk - offset]) { break; }
 str += grdata[kk - offset].join('');
}</pre></div><p>This fixed things for me. I would like a confirm that this is a bug, else I should find what trigger this in the application.</p>
<p>Thanks</p>
]]></description>
        	        	<pubDate>Thu, 03 Jul 2014 17:40:02 +0300</pubDate>
        </item>
</channel>
</rss>