<?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: Duplicate page in true scrolling</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling</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/duplicate-page-in-true-scrolling/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>markw65 on Duplicate page in true scrolling</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14181</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14181</guid>
        	        	<description><![CDATA[</p>
<p>The problem seems to be that some (perhaps all) browsers are reporting fractional coords for the top of the table, even though top, padding, scrollTop etc are all integers. So the formula sometimes computes 1.9999999 when it should compute 2. Math.ceil is not the solution, because the same rounding errors could produce 2.00001 and Math.ceil would then compute 3. But Math.round should be good enough.</p>
</p>
<p>I&#39;d still like to figure out where the fractional pixels are coming from &#8211; but for now Im pretty sure that Math.round will solve the problem.</p>
</p>
<p>Mark</p>
]]></description>
        	        	<pubDate>Fri, 22 Jan 2010 17:37:31 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Duplicate page in true scrolling</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14121</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14121</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Thanks. Since this is reported from many users we will definitley check this and let you know.</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Fri, 22 Jan 2010 10:04:11 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Duplicate page in true scrolling</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14120</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14120</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Thanks. Since this is reported from many users we will definitley check this and let you know.</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Fri, 22 Jan 2010 10:03:23 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Duplicate page in true scrolling</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14119</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14119</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Thanks. Since this is reported from many users we will definitley check this and let you know.</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Fri, 22 Jan 2010 10:02:06 +0200</pubDate>
        </item>
        <item>
        	<title>retro on Duplicate page in true scrolling</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14020</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14020</guid>
        	        	<description><![CDATA[<p>Well, it fixed the problem for me. Please try it with td padding of 7px and grid&#39;s height of 530px. It should be pretty close to my test environment. I double checked my server side code, and it works ok.</p>
</p>
<p>edit: Also, I have rownumbers set on true, and they are repeated too, so it is not like server side is returning wrong data, but jqGrid simply repeats first page of results.</p>
]]></description>
        	        	<pubDate>Tue, 19 Jan 2010 04:37:59 +0200</pubDate>
        </item>
        <item>
        	<title>markw65 on Duplicate page in true scrolling</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14018</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14018</guid>
        	        	<description><![CDATA[<p>I dont think so...</p>
</p>
<p>But I /think/ your server code must be misinterpreting the page numbers. Remember that the first page is page 1, not page 0.</p>
</p>
<p>Mark</p>
]]></description>
        	        	<pubDate>Tue, 19 Jan 2010 02:49:31 +0200</pubDate>
        </item>
        <item>
        	<title>retro on Duplicate page in true scrolling</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14017</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14017</guid>
        	        	<description><![CDATA[<p>I think, I&#39;ve found the solution. The problem was in using parseInt function instead of Math.ceil when determening current page. So line 277 of grid.base.js file should be <strong>page = Math.ceil((tbot + scrollTop) / div) + 1;</strong> instead of <strong>page = parseInt((tbot + scrollTop) / div) + 1;</strong></p>
<p>It should be tested probably, but it seems that it works on my example.</p>
]]></description>
        	        	<pubDate>Tue, 19 Jan 2010 02:10:32 +0200</pubDate>
        </item>
        <item>
        	<title>retro on Duplicate page in true scrolling</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14011</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14011</guid>
        	        	<description><![CDATA[<p>My server code is correct, and I was checking with Firebug. When I scroll out first set, first page is again requested. I will check again, but I don&#39;t know what could cause problems on the server side?</p>
]]></description>
        	        	<pubDate>Mon, 18 Jan 2010 22:42:57 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Duplicate page in true scrolling</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14007</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14007</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Check your server respons if it is correct for the second and etc pages. I will check with your code.</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 18 Jan 2010 22:19:33 +0200</pubDate>
        </item>
        <item>
        	<title>retro on Duplicate page in true scrolling</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14006</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14006</guid>
        	        	<description><![CDATA[<p>Here it is <a href="http://pastie.org/783695" rel="nofollow" target="_blank">http://pastie.org/783695</a></p>
]]></description>
        	        	<pubDate>Mon, 18 Jan 2010 22:13:19 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Duplicate page in true scrolling</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14003</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p14003</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Could you please post the grid configuration. Also there was a some fix in GitHub for this, but we should correct another one:</p>
<p><a href="http://www.trirand.com/blog/?page_id=393/bugs/bug-in-addjsondata-tsplastpage-value-wrong-assigned&#038;value=sf%25members%251%25user2135&#038;search=1&#038;ret=all" rel="nofollow" target="_blank"><a href="http://www.trirand.com/blog/?p" rel="nofollow">http://www.trirand.com/blog/?p</a>.....38;ret=all</a></p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 18 Jan 2010 21:35:52 +0200</pubDate>
        </item>
        <item>
        	<title>retro on Duplicate page in true scrolling</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p13994</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling#p13994</guid>
        	        	<description><![CDATA[<p>When I use true scrolling grid, I get duplicated first page. After that, "paging" works correctly. I&#39;ve added&#160; page = page + 1; somewhere around line 288 in file grid.base.js and that solved it. But it seems that it works correctly on your example page, so I don&#39;t know where the bug is.</p>
]]></description>
        	        	<pubDate>Mon, 18 Jan 2010 18:53:25 +0200</pubDate>
        </item>
</channel>
</rss>