<?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: True Scroll and sortorder Desc</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/true-scroll-and-sortorder-desc</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/true-scroll-and-sortorder-desc/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on True Scroll and sortorder Desc</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/true-scroll-and-sortorder-desc#p14348</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/true-scroll-and-sortorder-desc#p14348</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>I fixed this in GitHub</p>
<p><a href="http://github.com/tonytomov/jqGrid/commit/839d0afa4d560cb88d79921ecc2c94327183a737" rel="nofollow" target="_blank"><a href="http://github.com/tonytomov/jq" rel="nofollow">http://github.com/tonytomov/jq</a>.....327183a737</a></p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Thu, 28 Jan 2010 16:57:13 +0200</pubDate>
        </item>
        <item>
        	<title>mattdykstra on True Scroll and sortorder Desc</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/true-scroll-and-sortorder-desc#p14300</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/true-scroll-and-sortorder-desc#p14300</guid>
        	        	<description><![CDATA[<p>Thanks Tony,</p>
<p>I solved this problem for me.</p>
<p>&#160;line 277 of grid.base.js file should be&#160;<strong>page = Math.round((tbot + scrollTop) / div) + 1;</strong>&#160;instead of&#160;<strong>page = parseInt((tbot + scrollTop) / div) + 1;</strong></p>
<p>I got the answer from&#160;<strong>markw65 &#38; </strong><strong>retro</strong></p>
<p><a href="http://www.trirand.com/blog/?page_id=393/bugs/duplicate-page-in-true-scrolling/" rel="nofollow" target="_blank"><a href="http://www.trirand.com/blog/?p" rel="nofollow">http://www.trirand.com/blog/?p</a>.....scrolling/</a></p>
<p>Cheers</p>
<p>Matt</p>
]]></description>
        	        	<pubDate>Wed, 27 Jan 2010 04:12:35 +0200</pubDate>
        </item>
        <item>
        	<title>tony on True Scroll and sortorder Desc</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/true-scroll-and-sortorder-desc#p14127</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/true-scroll-and-sortorder-desc#p14127</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Thanks. In order to test with your setting I have dowloaded the version and put it into the demo, but for me there is no problems. Moreover I have changed the sortorder in demo site (you can see this live in demo page), but again no problems.</p>
<p>Also please check again your server response - I think that this is the problem</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Fri, 22 Jan 2010 10:45:48 +0200</pubDate>
        </item>
        <item>
        	<title>mattdykstra on True Scroll and sortorder Desc</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/true-scroll-and-sortorder-desc#p14072</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/true-scroll-and-sortorder-desc#p14072</guid>
        	        	<description><![CDATA[<p>Hi,</p>
<p>Using Jqgrid 3.6.2 and FF3.5 or IE7 and below there is an issue with paging numbers when the initial sortorder=desc</p>
<p>FF - initially displays a negative value when first scroll takes place e.g "-99 - 100 of 4000" instead of "1 - 200 of 4000"</p>
<p>IE7 - Displays javascript error and the loading sign does not disappear.</p>
</p>
<p>You can try this with your demo and having SORTORDER = DESC</p>
<p><input type='button' class='sfcodeselect' name='sfselectit9217' value='Select Code' data-codeid='sfcode9217' /></p>
<div class='sfcode' id='sfcode9217'>
<p><strong>HTML </strong></p>
<div style="font-size: 12px;">...<br />&#38;lt;table id="scrolling"&#38;gt;&#38;lt;/table&#38;gt;<br />&#38;lt;div id="pscrolling"&#38;gt;&#38;lt;/div&#38;gt;<br /> <strong>Java Scrpt code</strong> <br />jQuery("#scrolling").jqGrid({        <br /> scroll: 1,<br /> url:&#39;bigset.php&#39;,<br /> datatype: "json",<br /> height: 255,<br /> width: 600,<br /> colNames:[&#39;Index&#39;,&#39;Name&#39;, &#39;Code&#39;],<br /> colModel:[<br /> {name:&#39;item_id&#39;,index:&#39;item_id&#39;, width:65},<br /> {name:&#39;item&#39;,index:&#39;item&#39;, width:150},<br /> {name:&#39;item_cd&#39;,index:&#39;item_cd&#39;, width:100}<br /> ],<br /> rowNum:100,<br /> mtype: "GET",<br /> rownumbers: true,<br /> rownumWidth: 40,<br /> gridview: true,<br /> pager: &#39;#pscrolling&#39;,<br /> sortname: &#39;item_id&#39;,<br /> viewrecords: true,<br /> sortorder: "desc", //NOTE DESC AS INITIAL SORT ORDER<br /> caption: "Loading data while scrolling"	<br />});</div>
</div>
<div style="font-size: 12px;"></div>
<div style="font-size: 12px;">Cheers</div>
<div style="font-size: 12px;">Matt</div>
]]></description>
        	        	<pubDate>Wed, 20 Jan 2010 09:27:59 +0200</pubDate>
        </item>
</channel>
</rss>