<?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: virtual scrolling in IE can'd display more as about 66700 rows</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/virtual-scrolling-in-ie-cand-display-more-as-about-66700-rows</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/virtual-scrolling-in-ie-cand-display-more-as-about-66700-rows/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>aurelien.pernoud on virtual scrolling in IE can'd display more as about 66700 rows</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/virtual-scrolling-in-ie-cand-display-more-as-about-66700-rows#p30599</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/virtual-scrolling-in-ie-cand-display-more-as-about-66700-rows#p30599</guid>
        	        	<description><![CDATA[<p>This bug is also annoying us now&#8230; there was a github ticket on the same subject here</p>
<p><a rel="nofollow" href="https://github.com/tonytomov/jqGrid/issues/161" target="_blank">https://github.com/tonytomov/jqGrid/issues/161</a></p>
<p>(refers also to <a rel="nofollow" href="http://stackoverflow.com/questions/2402953/javascript-data-grid-for-millions-of-rows" target="_blank"></a><a href="http://stackoverflow.com/quest&#038;hellip" rel="nofollow" target="_blank"><a href="http://stackoverflow.com/quest" rel="nofollow">http://stackoverflow.com/quest</a>.....038;hellip</a>;..ns-of-rows)</p>
<p>Is it something planned to be looked at ?</p>
<p>I tried even latest IE11 the bug is still here&#8230; just use the demo page as mentionned by Oleg :</p>
<p><a href="http://www.trirand.net/aspnetmvc/grid/performancevirtualscrolling" rel="nofollow" target="_blank"><a href="http://www.trirand.net/aspnetm" rel="nofollow">http://www.trirand.net/aspnetm</a>.....lscrolling</a></p>
]]></description>
        	        	<pubDate>Fri, 09 May 2014 16:27:20 +0300</pubDate>
        </item>
        <item>
        	<title>kobruleht on virtual scrolling in IE can'd display more as about 66700 rows</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/virtual-scrolling-in-ie-cand-display-more-as-about-66700-rows#p25259</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/virtual-scrolling-in-ie-cand-display-more-as-about-66700-rows#p25259</guid>
        	        	<description><![CDATA[<p>This is discussed in</p>
<p><a href="http://stackoverflow.com/questions/2402953/javascript-data-grid-for-millions-of-rows" rel="nofollow" target="_blank"><a href="http://stackoverflow.com/quest" rel="nofollow">http://stackoverflow.com/quest</a>.....ns-of-rows</a></p>
</p>
<p>Slickgrid shows 500000 rows in IE9 without issues:</p>
<p><a href="http://mleibman.github.com/SlickGrid/examples/example-optimizing-dataview.html" rel="nofollow" target="_blank"><a href="http://mleibman.github.com/Sli" rel="nofollow">http://mleibman.github.com/Sli</a>.....aview.html</a></p>
</p>
<p>Code is here:</p>
<p><a href="https://github.com/mleibman/SlickGrid/commit/33781134ba140827957aa5975279f2570cd74a69" target="_blank">https://github.com/mleibman/SlickGrid/commit/33781134ba140827957aa5975279f2570cd74a69</a></p>
]]></description>
        	        	<pubDate>Mon, 28 Nov 2011 20:48:43 +0200</pubDate>
        </item>
        <item>
        	<title>OlegK on virtual scrolling in IE can'd display more as about 66700 rows</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/virtual-scrolling-in-ie-cand-display-more-as-about-66700-rows#p25237</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/virtual-scrolling-in-ie-cand-display-more-as-about-66700-rows#p25237</guid>
        	        	<description><![CDATA[<p>Hello Tony,</p>
<p>there are a bug in virtual scrolling in Internet Explorer (I used IE9 in my tests). You can see the problem on <a href="http://www.ok-soft-gmbh.com/jqGrid/99999VirtualScroll.htm" target="_blank">the demo</a>&#160;which work without any problem in Chrome and Firefox. After the opening of the demo one should go the the end of grid. In Chrome and Firefox you will see lines up to 99999 and in IE you can scroll only till the line number 66700.</p>
<p>The reason is the restiction in the maximum value of <strong>height</strong> and <strong>scrollTop</strong> properties. If one goes to the end of grid <a href="https://github.com/tonytomov/jqGrid/blob/v4.2.0/js/grid.base.js#L1569" target="_blank">the line</a>&#160;</p>
<p><input type='button' class='sfcodeselect' name='sfselectit204' value='Select Code' data-codeid='sfcode204' /></p>
<div class='sfcode' id='sfcode204'>$(&#34;&#62;div:first&#34;,ts.grid.bDiv).css({height : height})&#8230;</div>
<p>will try to assign the value 2299977 (it&#39;s 99999*23) to the <strong>height</strong> property. If you get the value of <strong>height</strong>&#160;property after the executing of the line you will see the value 1533917 (it&#39;s 66692*23 + 1) instead. It seems the maximum value which IE allows to assign to the height property.</p>
<p>Very close problem exist in the <strong>scrollGrid</strong> method because the maximum value which can be assigned to <strong>grid.bDiv.scrollTop</strong> seems be 1533691 (66682*23). So the value of scrollTop variable assigned in <a href="https://github.com/tonytomov/jqGrid/blob/v4.2.0/js/grid.base.js#L806" target="_blank">the line</a>&#160;of <strong>populateVisible</strong> function will be never correspond to the end of the grid and the lines till the row number 66700 can be displayed only.</p>
<p>So it seems that one should make some changes in the code and use the scroling which not exactly orrespond to the virtual height of the grid. Instead of that one should hold the exact position in some internal jqGrid parameter. One can use <strong>scrollTop</strong>&#160;only to get <em>relative</em> position in the virtual grid. The exact position of the "view" which will be displayed should be calculated manually.</p>
<p>Best regards<br />Oleg</p>
<p>P.S. By the way, it you look at <a href="http://www.trirand.net/aspnetmvc/grid/performancevirtualscrolling" target="_blank">the trirand.net demo</a>&#160;in Chrome you are able to scroll to the row with the OrderID=500000. In IE you will be able to scroll up to the row with the OrderID=100. I think, it&#39;s the same problem which I described before.</p>
]]></description>
        	        	<pubDate>Fri, 25 Nov 2011 12:16:04 +0200</pubDate>
        </item>
</channel>
</rss>