<?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: jqGrid Performance</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-performance-1</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/help/jqgrid-performance-1/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>costeen on jqGrid Performance</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-performance-1#p30782</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-performance-1#p30782</guid>
        	        	<description><![CDATA[<p>I'm using jqGrid 4.6.0. Â I tested in both both IE8 and IE11. Â It seemed about the same. Â I took columns from 30 to 15. Â 15 columns and 1000 rows in IE8 is taking around 4.2 seconds. Â 15 columns and 500 rows is taking about 2.2 seconds. Â I probably have some flexibility with business requirements on the page size, but reducing the number of columns will be a harder sell.</p>
]]></description>
        	        	<pubDate>Thu, 19 Jun 2014 20:32:21 +0300</pubDate>
        </item>
        <item>
        	<title>tony on jqGrid Performance</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-performance-1#p30778</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-performance-1#p30778</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Which version of jqGrid is used? Which version of IE is slow?<br />
Try to remove the frozen columns and see the result.<br />
The number of rows is not a problem - the number the columns is a problem in IE.</p>
<p>If you reduce the columns to 15 what is the result?</p>
<p>Kind Regards</p>
]]></description>
        	        	<pubDate>Thu, 19 Jun 2014 11:56:51 +0300</pubDate>
        </item>
        <item>
        	<title>costeen on jqGrid Performance</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-performance-1#p30776</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-performance-1#p30776</guid>
        	        	<description><![CDATA[<p>Looking to see if anyone had ideas about making jqGrid perform better with larger datasets.Â  I have around 1000 rows and 30 columns.Â  It takes over 6 seconds to display the grid (notÂ including retrieving the data) in Internet Explorer.Â  Chrome is slow too, but IE is by far the worse.Â  UsingÂ a small page size makes it perform better, but this is not acceptable to my users.Â  Has anyone else solved this?Â  I must use frozen columns as well.</p>
<p>&#60;!DOCTYPE html&#62;<br />
&#60;head&#62;</p>
<p>&#60;link rel="stylesheet" type="text/css" media="screen" href="./jqgrid/4.6.0/css/ui.jqgrid.css" /&#62;<br />
&#60;link rel="stylesheet" type="text/css" media="screen" href="./jquery-ui/1.9.2/css/smoothness/jquery-ui-1.9.2.custom.css" /&#62;<br />
&#60;script type="text/javascript" src="./jquery/1.9.1/jquery-1.9.1.js"&#62;&#60;/script&#62;<br />
&#60;script type="text/javascript" src="./jquery-ui/1.9.2/js/jquery-ui-1.9.2.custom.js"&#62;&#60;/script&#62;</p>
<p>&#60;!-- jqgrid --&#62;<br />
&#60;script src="./jqgrid/4.6.0/js/i18n/grid.locale-en.js" type="text/javascript"&#62;&#60;/script&#62;<br />
&#60;script src="./jqgrid/4.6.0/js/jquery.jqGrid.js" type="text/javascript"&#62;&#60;/script&#62;<br />
&#60;script type="text/javascript" src="./js/data.js"&#62;&#60;/script&#62;<br />
&#60;style&#62;</p>
<p>html,body {<br />
Â height: 100%;<br />
Â overflow: hidden;<br />
}</p>
<p>.ui-jqgrid .ui-pg-input {<br />
Â height:inherit;<br />
}<br />
&#60;/style&#62;<br />
&#60;/head&#62;<br />
&#60;body&#62;<br />
Â &#60;label for="pages"&#62;Pages:&#60;/label&#62;&#60;input id="pages" type="number" min="1" max="10" step="1" value="1" name="pages"/&#62;<br />
Â &#60;table id="gridTableId"&#62;<br />
Â &#60;/table&#62;<br />
Â &#60;div id="pager"&#62;&#60;/div&#62;<br />
&#60;/body&#62;</p>
<p>&#60;script type="text/javascript"&#62;</p>
<p>Â var columns =<br />
Â Â Â [<br />
Â Â Â Â Â {<br />
Â Â Â Â Â Â "label" : "columnDataA",<br />
Â Â Â Â Â Â "id" : "columnDataA",<br />
Â Â Â Â Â Â "name" : "columnDataA",<br />
Â Â Â Â Â Â "classes" : "columnDataA",<br />
Â Â Â Â Â Â "frozen" : true,<br />
Â Â Â Â Â Â "width" : 143,<br />
Â Â Â Â Â Â "title" : true<br />
Â Â Â Â Â },<br />
Â Â Â Â Â <br />
// .... columns deleted for brevity...</p>
<p>Â Â Â Â Â {<br />
Â Â Â Â Â Â "label" : "columnDataEE",<br />
Â Â Â Â Â Â "id" : "columnDataEE",<br />
Â Â Â Â Â Â "name" : "columnDataEE",<br />
Â Â Â Â Â Â "classes" : "columnDataEE",<br />
Â Â Â Â Â Â "frozen" : false,<br />
Â Â Â Â Â Â "width" : 129,<br />
Â Â Â Â Â Â "title" : true<br />
Â Â Â Â Â } ];</p>
<p>Â var creategrid =Â  function () {<br />
Â Â var start = now();<br />
Â Â $("table").jqGrid({<br />
Â Â Â datatype : 'clientSide',<br />
Â Â Â loadui : "disable",<br />
Â Â Â data : data,<br />
Â Â Â colModel : columns,<br />
Â Â Â reload : false,<br />
Â Â Â scroll : false,<br />
Â Â Â sortable : false,<br />
Â Â Â gridview : true,<br />
Â Â Â shrinkToFit : false,<br />
Â Â Â loadonce : true,<br />
Â Â Â rowNum : data.length/getPages(),<br />
Â Â Â width : $(window).width()-30,<br />
Â Â Â altRows : true,<br />
Â Â Â headertitles : true,<br />
Â Â Â altclass : "odd",<br />
Â Â Â pager: "#pager",<br />
Â Â Â pgbuttons: true,<br />
Â Â Â height : $(window).height()-100<br />
Â Â });</p>
<p>Â Â $("table").jqGrid('setFrozenColumns');<br />
Â };<br />
Â <br />
Â $(document).ready(function() {<br />
Â Â creategrid();<br />
Â });</p>
<p>Â var getPages = function () {<br />
Â Â var value = $("#pages").val();<br />
Â Â <br />
Â Â if($.isNumeric(value)) {<br />
Â Â Â return value;<br />
Â Â }<br />
Â Â <br />
Â Â return 1;<br />
Â Â <br />
Â };<br />
Â <br />
&#60;/script&#62;</p>
<p>&#60;/html&#62;</p>
]]></description>
        	        	<pubDate>Wed, 18 Jun 2014 20:20:07 +0300</pubDate>
        </item>
</channel>
</rss>