<?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 data loading performace</title>
	<link>http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace</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/discussion/jqgrid-data-loading-performace/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on JQGrid data loading performace</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p8116</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p8116</guid>
        	        	<description><![CDATA[<p>HEllo,</p>
<p>Thanks, it really work better in IE.</p>
<p>Patch included</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Wed, 29 Jul 2009 01:21:44 +0300</pubDate>
        </item>
        <item>
        	<title>tony on JQGrid data loading performace</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p8092</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p8092</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Thanks</p>
<p>I do not jet have tested this, but it seems ok and reasonable.</p>
<p>Will perform some test and if all is ok will fix it.</p>
<p>The final 3.5 will come soon.</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 28 Jul 2009 09:04:13 +0300</pubDate>
        </item>
        <item>
        	<title>aurelien.pernoud on JQGrid data loading performace</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p8088</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p8088</guid>
        	        	<description><![CDATA[<p>Hi Tony, could you add the following to the resizing, this make it much more quicker on IE.</p>
<p>The slow resizing was due to the selector used in dragStart and dragMove again and again, and IE is really bad at it, so I added a local variable named curGbox (I didn&#39;t know how to name it).</p>
<p>I also added some lines to prevent IE from highlighting selected text while scrolling&#8230; hope you keep it too ?</p>
<p>Done on the latest beta (12)</p>
<p>Really nice job on JQGrid BTW. <strong>Do you have any idea of when a 3.5 final may come out ?</strong></p>
<p>dragStart: function(i,x,y) {<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; this.resizing = { idx: i, startX: x.clientX, sOL : y[0]};<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; this.hDiv.style.cursor = &#8220;col-resize&#8221;;</p>
<p>&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;<strong> this.curGbox = $(&#8221;#rs_m&#8221;+p.id,&#8221;#gbox_&#8221;+p.id);</strong><br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <strong>this.curGbox.css({display:&#8221;block&#8221;,left:y[0],top:y[1],height:y[2]});</strong><br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // prevent IE from highlighting text<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <strong>document.onselectstart=new Function (&#8221;return false&#8221;);</strong><br />&#160;&#160;&#160; &#160;&#160;&#160; },</p>
<p>dragMove: function(x) {<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; (&#8230;)<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; if(newWidth &#62; 33) {<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <strong>this.curGbox.css({left:this.resizing.sOL+diff});&#160;&#160; </strong><br />&#160;&#160;&#160; &#160; &#160; &#160; &#160;  (&#8230;)<br />&#160;&#160;&#160; &#160;&#160;&#160; },</p>
<p>dragEnd: function() {</p>
<p>&#160; &#160; &#160; &#160; &#160; &#160; (&#8230;)</p>
<p><strong>&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; this.curGbox=null;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // enable back IE to&#160; highlight text<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; document.onselectstart=new Function (&#8221;return true&#8221;);</strong></p>
<p>}</p>
]]></description>
        	        	<pubDate>Tue, 28 Jul 2009 07:38:06 +0300</pubDate>
        </item>
        <item>
        	<title>tony on JQGrid data loading performace</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p7116</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p7116</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Thanks again. Do you have try with other grid components like Ext Grid in order to compare? Also if you load data direct in a table with innerHtml of course it will be quicker - you understand what I mean. Here we have a complex data grid component and it is not possible to do just simple appending of the data.</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 09 Jun 2009 05:02:30 +0300</pubDate>
        </item>
        <item>
        	<title>mihaivictor on JQGrid data loading performace</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p7078</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p7078</guid>
        	        	<description><![CDATA[<p>Hi,</p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">Regarding the resize feature, it worked fine in IE 6, even with 500 rows in previous version of JQGrid. So, there was something changed in this version of the plugin. Will this new feature (that had an impact on the resize feature)&#160;remain in the final version of the plugin? </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">Regarding the performances, a more accurate profile shows that the improvement was from 13 to 4 seconds. So, the difference between the JQGrid and &#39;innerHTML&#39; command is from 0.7 to 4 seconds; this means about 5.5 times.</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">After I removed the &#8216;gridComplete&#8217; parameter, there was an improvement of about 0.3 seconds: the time to load the data is 3.7 seconds.</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">Thank you.</span></p>
]]></description>
        	        	<pubDate>Fri, 05 Jun 2009 03:28:01 +0300</pubDate>
        </item>
        <item>
        	<title>tony on JQGrid data loading performace</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p7070</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p7070</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Thanks again. Also as of my previous post we do a lot of other&#160; thinks after the data is loaded. I will try to include timers which should estimate the real loading of data.</p>
<p>About resizing - yes it is slow only in IE browsers (do not want to explain why). I have made some other little improvements wich speed a liitle the resizing in IE, but not so much.</p>
<p>P.S. Try to remove all events like loadComplete, gridComplete and do a new test.</p>
</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Fri, 05 Jun 2009 01:45:27 +0300</pubDate>
        </item>
        <item>
        	<title>mihaivictor on JQGrid data loading performace</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p7064</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p7064</guid>
        	        	<description><![CDATA[<p>Yes, I used &#39;gridview : true &#39; parameter when&#160; the jqGrid was built:</p>
<p>&#160;&#160;$list.jqGrid( {<br />&#160;&#160;&#160;datatype :"local",<br />&#160;&#160;&#160;height :220,<br />&#160;&#160;&#160;forceFit :true,<br />&#160;&#160;&#160;colNames :colNames,<br />&#160;&#160;&#160;colModel :colModel,<br />&#160;&#160;&#160;imgpath :"./themes/steel/images",<br />&#160;&#160;&#160;multiselect :false,<br />&#160;&#160;&#160;rowNum:500,<br />&#160;&#160;&#160;<strong>gridview:true,<br /></strong>&#160;&#160;&#160;onSelectRow :doOnSelectRow,<br />&#160;&#160;&#160;gridComplete : function() {<br />&#160;&#160;&#160;&#160;var x = $("#list4 a");<br />&#160;&#160;&#160;&#160;x.click( function(e) {<br />&#160;&#160;&#160;&#160;&#160;alert("clicked on an image.")<br />&#160;&#160;&#160;&#160;&#160;});<br />&#160;&#160;&#160;}<br />&#160;&#160;});</p>
<p>I suppose that is why there was a performace improvement from 13 to 4.5 seconds. Does your tests show something else ?&#160;I also put above the way I&#39;ve built the grid in order to give you a clear view about the usage.</p>
<p>Also there is one more thing that I&#39;ve noticed in the new version: the resize column feature works very slow compared with the resize from the previous version.</p>
<p>Thank you.</p>
]]></description>
        	        	<pubDate>Thu, 04 Jun 2009 09:33:13 +0300</pubDate>
        </item>
        <item>
        	<title>tony on JQGrid data loading performace</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p7037</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p7037</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Thanks for investigations again. Did you try with parameter</p>
<p>gridview : true ? , where all the data is puted at once.</p>
<p>Some other additional nothes</p>
<p>since you put</p>
<p>datatype:function(..) {</p>
<p>start time</p>
<p>...addJSONData()</p>
<p>enndtime - starttime</p>
<p>}</p>
<p>this is not real check becouse&#160; in this method we do a lot of other thinks like reseting the loading message, updating the pagger values and other calculatins, which adds additinall time.</p>
<p>Also please let me known what is the result if you set gridview to true.</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Thu, 04 Jun 2009 03:28:20 +0300</pubDate>
        </item>
        <item>
        	<title>mihaivictor on JQGrid data loading performace</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p7015</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p7015</guid>
        	        	<description><![CDATA[<p>I tested the new version of JQGrid (3.5 beta, build4).</p>
<p>For 500 rows and 9 columns, in IE 6, on a Pentium dual core processor (2.13 GHz) with 2GB of RAM, the time to load the table is aproximatively 4.5 seconds.<br />There was an improvement of 3 times from the previously 13 seconds !<br />The time to load for a table of 500 rows and 9 columns, using the &#39;innerHTML&#39; command, was 0.7 seconds on the same computer.</p>
<p>Do you think that the difference of almost 6 times comes from the JQuery core ?</p>
<p>Did you change something about the way the plugin should be used so that to obtain better performances (because I used it in&#160;the same way as described above) ?</p>
<p>Thank you,</p>
]]></description>
        	        	<pubDate>Tue, 02 Jun 2009 09:20:14 +0300</pubDate>
        </item>
        <item>
        	<title>tony on JQGrid data loading performace</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p6693</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p6693</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Thank you for these investigations and tests. You help me a lot to improve the performance.</p>
<p>Actually the bad thing in 3.4 and in 3.5 alfa3 is that there are a lot of jQuery operators when adding data to the grid. This slow down the performance a lot.</p>
<p>I succesed to construct only strings (in my case array) and call jQuery only when the data is appened. I have added two options - load data at once or row by row when we have treegrid, subgrid and afterinsert event.</p>
<p>In first case the speed is about 10 time fater in the second 3-5 time faster compared to previous&#160; versions.</p>
<p>Also if you are interested what technique I use in jqGrid, you can read this</p>
<p><a href="http://www.learningjquery.com/2009/03/43439-reasons-to-use-append-correctly" rel="nofollow" target="_blank"><a href="http://www.learningjquery.com/" rel="nofollow">http://www.learningjquery.com/</a>.....-correctly</a></p>
<p>- this help me a lot.</p>
<p>Thanks</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Fri, 15 May 2009 01:29:10 +0300</pubDate>
        </item>
        <item>
        	<title>mihaivictor on JQGrid data loading performace</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p6681</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p6681</guid>
        	        	<description><![CDATA[<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">Hi,</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">Because I have tested some grid plugins over the internet and found out that JQGrid is one of the best, I have also taken a quick look into the JQGrid plugin code.</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">I&#8217;ve seen that you used &#39;document.createElement&#39; JavaScript command, to create DOM elements that are added to the page. I&#8217;ve made a test and build an identical table (with same number and content for the columns) with 500 rows using &#39;innerHTML&#39; command. </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">The time to load for the table was 0.7 seconds in IE 6 on a Pentium dual core processor (2.13 GHz) with 2GB of RAM. When using document.createElement JavaScript command for the same table with 500 rows the time was 2.3 seconds on the same computer.</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">Did you considered in your new version of the JQGrid to change the way DOM elements are created?</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">Do you know what could cause the delay in JQGrid code, so that to exist that difference from 2.3 seconds to 13 seconds (except the DOM creation issue)?</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">&#160;</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">Also, I have made a profile of the code using FireBug for a table with 100 rows and one with 500 rows. I saw that there are created around 90 JQuery objects using init() function for each row of the table (a total of ~9000 calls to init() for 100 rows table), objects that are then deleted using clean() function (~1000 calls for 100 rows table). The total number of function calls to build a table with 100 rows is ~96500. The number of calls is increased linearly when a table of 500 rows is built.</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">&#160;</span><span style="font-size: small; font-family: Times New Roman;">Do you know if these calls are made directly by the JQGrid plugin or if they are made internally by JQuery? </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">Is there the possibility that the number of calls and objects generation&#160;to be decreased from JQGrid plugin code (maybe using some sort of cache for the JQuery objects)?</span></p>
</p>
<p>It will be great if JQGrid plugin&#160;will work 5-10 times faster !</p>
]]></description>
        	        	<pubDate>Thu, 14 May 2009 08:28:44 +0300</pubDate>
        </item>
        <item>
        	<title>tony on JQGrid data loading performace</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p6650</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p6650</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>You are right. After lot of investigatios and performance test I realized that jqGrid have problems with loading big sets &#62;150 rows. After two days work I make some changes in 3.5 version where the speed (in certain cases) is 5-10 time faster.</p>
<p>With other words - beta release will have these improvements. Hope to publish soon. Actually I need a day or two to document all changes in the new version.</p>
<p>Thanks</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Wed, 13 May 2009 13:29:22 +0300</pubDate>
        </item>
        <item>
        	<title>mihaivictor on JQGrid data loading performace</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p6610</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p6610</guid>
        	        	<description><![CDATA[<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">Hi,</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">Sorry that I did not mention clearly, but those times were the elapsed times only for the &#8220;addJSONData&#8221; JQGrid function. So, the times are only for the second timer from your code.</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">Before using JQGrid plugin into the project I wanted to test it first. I did not even used AJAX calls with this test. The data were taken from a JavaScript file, that contains a JSON representation string of the data.&#160;This was loaded into the JavaScript code&#160;using &#8216;eval&#8217; function (the time for eval was not included into the duration presented into the initial post). The JavaScrip variable that resulted from the eval was sent to the &#8220;addJSONData&#8221; function:</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;">&#160;</p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">var jsonData=eval(file_data);</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">$list[0].addJSONData(jsonData);</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;">&#160;</p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">$list[0] - references the JQGrid object</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">&#160;</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">Is there a fastest way to build a JQGrid ?</span></p>
]]></description>
        	        	<pubDate>Mon, 11 May 2009 03:27:17 +0300</pubDate>
        </item>
        <item>
        	<title>tony on JQGrid data loading performace</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p6575</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p6575</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Thanks for this tests. It is well known that IE6 when using ajax calls is one of the slowest browsers. For me these tests should be considered only if they are compared in other browsers. Also if possible could you please make two comparations</p>
<p>datatype: function (data) {</p>
<p>var starttime1 = // first start</p>
<p>$.ajax({</p>
<p>...</p>
<p>complete: function (mydata,status) {</p>
<p>var starttime2 = // second start-</p>
<p>addJSONData here</p>
<p>stop first timer</p>
<p>stop second timer</p>
<p>})</p>
<p>}</p>
</p>
<p>This will be very interested.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Sat, 09 May 2009 08:14:53 +0300</pubDate>
        </item>
        <item>
        	<title>mihaivictor on JQGrid data loading performace</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p6557</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-data-loading-performace#p6557</guid>
        	        	<description><![CDATA[<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">I tried to use JQGrid (version 3.4.3, revision 84 from 2009-03-12) in an application where one table had 7 columns of text, 1 column with a checkbox and other column with 2 image links &#8211; so 9 columns. The average table size in this application is 100 rows.</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">&#160;</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">The elapsed time needed to attach 100 rows of data (JSON formatted) to the JQGrid was:</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Times New Roman;"><span style="mso-list: Ignore;"><span style="font-size: small;">-</span><span style="font: 7pt &#34;Times New Roman&#34;;">&#160;&#160; </span></span><span style="font-size: small;">4.5 seconds in IE 6 on IE on a Pentium 4 processor (3 GHz) with 2GB of RAM</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Times New Roman;"><span style="mso-list: Ignore;"><span style="font-size: small;">-</span><span style="font: 7pt &#34;Times New Roman&#34;;">&#160;&#160;&#160;</span></span><span style="font-size: small;">2,1 seconds in IE 6 on a Pentium dual core processor (2.13 GHz) with 2GB of RAM</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">&#160;</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">For 500 rows the performance was:</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Times New Roman;"><span style="mso-list: Ignore;"><span style="font-size: small;">-</span></span></span><span style="font-family: Times New Roman;"><span style="mso-list: Ignore;"><span style="font: 7pt &#34;Times New Roman&#34;;">&#160;</span></span><span style="font-size: small;">26 seconds in IE 6 on IE on a Pentium 4 processor (3 GHz) with 2GB of RAM</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Times New Roman;"><span style="mso-list: Ignore;"><span style="font-size: small;">-</span></span><span style="font-size: small;">13 seconds in IE 6 on a Pentium dual core processor (2.13 GHz) with 2GB of RAM</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">&#160;</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">The used function was JQGrid function: &#8220;addJSONData&#8221;.</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt 18pt;"><span style="font-size: small; font-family: Times New Roman;">&#160;</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small; font-family: Times New Roman;">Is this the usual performance for JQGrid or did I do something wrong? <span style="font-size: 12pt; font-family: &#34;Times New Roman&#34;; mso-fareast-font-family: &#39;Times New Roman&#39;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;">Which is the fastest way to build a JQGrid ?</span></span></p>
]]></description>
        	        	<pubDate>Fri, 08 May 2009 06:17:36 +0300</pubDate>
        </item>
</channel>
</rss>