<?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: Warning: Unresponsive script when loading 2,000 records</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/warning-unresponsive-script-when-loading-2000-records</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/warning-unresponsive-script-when-loading-2000-records/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>sdw on Warning: Unresponsive script when loading 2,000 records</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/warning-unresponsive-script-when-loading-2000-records#p18017</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/warning-unresponsive-script-when-loading-2000-records#p18017</guid>
        	        	<description><![CDATA[</p>
<p>Thank you for the reply Tony.I was able to fix this problem.</p>
</p>
<p>200-300 records load just fine. It starts to hit the tiomeout</p>
<p>depending on the user after about 1,500 records.</p>
</p>
<p>I finally figured out how to add the records all at once as you suggested. This did help</p>
<p>quite a bit, with about a 30% increase in performance. Unfortunately the timeout was</p>
<p>still being triggered on some machines. And since there could be 4,000+ records at</p>
<p>some points, that wouldn&#39;t work for me.</p>
</p>
<p>So what I did was instead of sending down 1 large javascript call, I broke each row addition</p>
<p>into its own javascript call and then flushed the browser cache. This way each call is only a fraction</p>
<p>of a second and the timeout will never be triggered even if you loaded 50,000 rows. This is</p>
<p>the relevent code:</p>
</p>
<p>&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; jQuery("#myTable").jqGrid({<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;datatype: "local", <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;colNames:[&#39;Select&#39;,&#39;State Number 1&#39;, &#39;State Number 2&#39;, &#39;eHars StNo 1&#39;,&#39;eHars StNo 2&#39;,&#39;Match Weight&#39;], <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;colModel:[ <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;Select&#39;,index:&#39;Select&#39;,sortable:false}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;StateNumber1&#39;,index:&#39;StateNumber1&#39;}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;StateNumber2&#39;,index:&#39;StateNumber2&#39;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;eHarsStNo1&#39;,index:&#39;eHarsStNo1&#39;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;eHarsStNo2&#39;,index:&#39;eHarsStNo2&#39;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;MatchWeight&#39;,index:&#39;MatchWeight&#39;}<br />&#160;&#160; &#160;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; ],<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; height: "70%",<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; autowidth: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; altClass: &#39;altRow&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; altRows: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; caption: "Click on the first State Number in the pairs of statenos below to combine" <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; });<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;/script&#62;</p>
<p>&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; while (rs.next() ){</p>
</p>
<p>&#160;&#160; &#160;&#160;&#160;&#160; &#60;script&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;jQuery("#myTable").jqGrid(&#39;addRowData&#39;,i,{Select:"&#60;input type=&#39;radio&#39; name=&#39;merge&#39; onClick=&#39;goToMergeCheck()&#39;&#62;&#60;input type=hidden name=stateNo1 value=&#39;&#60;%=stateNo1%&#62;&#39;&#62;&#60;input type=hidden name=stateNo2 value=&#39;&#60;%=stateNo2%&#62;&#39;",StateNumber1:"&#60;%=stateNo1%&#62;",StateNumber2:"&#60;%=stateNo2%&#62;",eHarsStNo1:"&#60;%=eHarsNo1out%&#62;",eHarsStNo2:"&#60;%=eHarsNo2out%&#62;",MatchWeight:"&#60;%=HTML.formatForTD(matchKey)%&#62;"});<br />&#160;&#160; &#160;&#160;&#160; &#160;i++;&#160;&#160; &#160;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;/script&#62;</p>
<p>&#160;&#160; &#160;&#160;&#160; &#160;&#60;%out.flush();%&#62;</p>
<p>}</p>
</p>
<p>This caused the table to visibly grow as it loaded. I prefer to only show the table when it is ready so I had</p>
<p>the table hidden and a javascript please wait animation shown while it was loaded. Then at the end of the page</p>
<p>I changed the table div to blocked. Works great and I tested with 9,000 records.</p>
</p>
<p>I want to mention a couple of things. A couple of the grid options destroy the loading performance.</p>
</p>
<p>with this option:&#160; &#160; rownumbers: true;</p>
</p>
<p>or</p>
</p>
<p>&#160; pager : &#39;#gridpager&#39;,<br />pgbuttons: false,<br />&#160;pginput: false,<br />viewrecords: true,<br />recordtext: "Total Records:&#38;nbsp;&#38;nbsp;&#60;font style=&#39;color:red&#39;&#62;{2}&#60;/font&#62;",</p>
</p>
<p>Will make the table load much, much slower. Without those options 3,000 records</p>
<p>will take about 14 seconds to load. With those options on it will take about 8 minutes.</p>
</p>
<p>In my case I just wanted the pager there to display the total number of records.</p>
<p>I removed number being loaded and just had a straight text string of "this is a test"</p>
<p>in there and it was still just as slow. Just wanted to give you a heads up.</p>
</p>
<p>Thanks for all your hard work on this. Now that I have the timeout issues resolved</p>
<p>my users are loving jqgrid.</p>
]]></description>
        	        	<pubDate>Thu, 17 Jun 2010 20:40:00 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Warning: Unresponsive script when loading 2,000 records</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/warning-unresponsive-script-when-loading-2000-records#p17953</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/warning-unresponsive-script-when-loading-2000-records#p17953</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>If you try with not so much rows - let say 200-300 is this happen?</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Wed, 16 Jun 2010 13:24:00 +0300</pubDate>
        </item>
        <item>
        	<title>sdw on Warning: Unresponsive script when loading 2,000 records</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/warning-unresponsive-script-when-loading-2000-records#p17814</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/warning-unresponsive-script-when-loading-2000-records#p17814</guid>
        	        	<description><![CDATA[</p>
<p>Bump.&#160; How can I use &#39;addRowData&#39; to load all the rows at once? Anyone have an example?</p>
</p>
<p>Thanks.</p>
]]></description>
        	        	<pubDate>Tue, 08 Jun 2010 17:20:04 +0300</pubDate>
        </item>
        <item>
        	<title>sdw on Warning: Unresponsive script when loading 2,000 records</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/warning-unresponsive-script-when-loading-2000-records#p17756</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/warning-unresponsive-script-when-loading-2000-records#p17756</guid>
        	        	<description><![CDATA[</p>
<p>Thank you for the fast response. I removed the comma.</p>
</p>
<p>I am a little confused as how to load the data all at once, I am assuming you mean with one call to &#39;addRowData&#39; instead</p>
<p>of one at a time with a for loop right?</p>
</p>
<p>I looked at the link you sent me and it appears that I have the data object in the specified format of</p>
</p>
<p>[{name1:value1,name2: value2&#8230;}, {name1:value1,name2: value2&#8230;} ]</p>
</p>
<p>Here is what is in the view source of my page:</p>
</p>
<pre id="line191">   	        &#60;table id="myTable"&#62;&#60;/table&#62;<br />    	        &#60;div id="gridpager"&#62;&#60;/div&#62;<br />    	        &#60;script&#62;<br />    	                <br />    	  jQuery("#myTable").jqGrid({<br />    	  datatype: "local", <br />    	        		<br />          colNames:[&#39;Select&#39;,&#39;State Number 1&#39;, &#39;State Number 2&#39;, &#39;eHars StNo 1&#39;,&#39;eHars StNo 2&#39;,&#39;Match Weight&#39;], <br />    	        		colModel:[ <br />    	        		          {name:&#39;Select&#39;,index:&#39;Select&#39;,sortable:false}, <br />    	        		          {name:&#39;StateNumber1&#39;,index:&#39;StateNumber1&#39;}, <br />    	        		          {name:&#39;StateNumber2&#39;,index:&#39;StateNumber2&#39;},<br />    	        		          {name:&#39;eHarsStNo1&#39;,index:&#39;eHarsStNo1&#39;},<br />    	        		          {name:&#39;eHarsStNo2&#39;,index:&#39;eHarsStNo2&#39;},<br />    	        		          {name:&#39;MatchWeight&#39;,index:&#39;MatchWeight&#39;}<br />    <br />    	        		       ],<br />    	        		       height: "70%",<br />    	        		       autowidth: true,<br />    	        		       altClass: &#39;altRow&#39;,<br />    	        		       altRows: true,<br />    	        		  caption: "Click on the first State Number in the pairs of statenos below to combine" <br />    	        			   });<br /><br />    			var mydata = [ <br />    	        <br /><br />{Select:"&#60;input type=&#39;radio&#39; name=&#39;merge&#39; onClick=&#39;goToMergeCheck()&#39;&#62;<br />&#60;input type=hidden name=stateNo1 value=&#39;0010000697&#39;&#62;<br />&#60;input type=hidden name=stateNo2 value=&#39;0010019495&#39;",<br />StateNumber1:"0010000697",StateNumber2:"0010019495",eHarsStNo1:" ",eHarsStNo2:" ",<br />MatchWeight:"2.00"}, <br /><br /><br /></pre>
<p>.............................2,000 repetitions of this....................</p>
</p>
<pre id="line191">{Select:"&#60;input type=&#39;radio&#39; name=&#39;merge&#39; onClick=&#39;goToMergeCheck()&#39;&#62;<br />&#60;input type=hidden name=stateNo1 value=&#39;0010022777&#39;&#62;<br />&#60;input type=hidden name=stateNo2 value=&#39;0010022587&#39;",StateNumber1:"0010022777",<br />StateNumber2:"0010022587",eHarsStNo1:" ",eHarsStNo2:" ",MatchWeight:"2.00"}, <br /><br /><br />    	 <br /><br />]; <br />    			<br />jQuery("#myTable").jqGrid(&#39;addRowData&#39;,mydata); <br /><br /><br /><br /><br />I am assuming I am using &#39;addRowData&#39; incorrectly now but <br />no javascript error is shown. <br />The table is just blank now.<br /><br />Thanks again.<br /><br /><br />    	       <br /></pre></p>
]]></description>
        	        	<pubDate>Fri, 04 Jun 2010 20:24:54 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Warning: Unresponsive script when loading 2,000 records</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/warning-unresponsive-script-when-loading-2000-records#p17738</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/warning-unresponsive-script-when-loading-2000-records#p17738</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>1. You have a error in the script:</p>
<p>&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160; colModel:[ <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;Select&#39;,index:&#39;Select&#39;,sortable:false}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;StateNumber1&#39;,index:&#39;StateNumber1&#39;}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;StateNumber2&#39;,index:&#39;StateNumber2&#39;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;eHarsStNo1&#39;,index:&#39;eHarsStNo1&#39;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;eHarsStNo2&#39;,index:&#39;eHarsStNo2&#39;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;MatchWeight&#39;,index:&#39;MatchWeight&#39;}, <strong>&#60;=== This is wrong</strong><br />&#160;&#160; &#160;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; ],</p>
</p>
<p>2. addRowData can load the data at once. More info here:</p>
<p><a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:methods" rel="nofollow" target="_blank">http://www.trirand.com/jqgridwiki/doku.php?id=wiki:methods</a></p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Fri, 04 Jun 2010 17:41:49 +0300</pubDate>
        </item>
        <item>
        	<title>sdw on Warning: Unresponsive script when loading 2,000 records</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/warning-unresponsive-script-when-loading-2000-records#p17737</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/warning-unresponsive-script-when-loading-2000-records#p17737</guid>
        	        	<description><![CDATA[</p>
<p>I am getting an unresponsive script warning from firefox when loading 2,000 records. Is this abnormal, or</p>
<p>is this the expected performance when loading 2,000 records and I should increase max_script_runtime ?</p>
<p>I am using version 3.6</p>
<p>I did not get this error using tablesorter, but JQGRid has features I need that are missing in tablesorter&#160; please help!</p>
</p>
<p>The cells are populated with some low digit numbers.</p>
</p>
<p>Here is the relevant code:</p>
</p>
<p>jQuery("#myTable").jqGrid({<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;datatype: "local", <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;colNames:[&#39;Select&#39;,&#39;State Number 1&#39;, &#39;State Number 2&#39;, &#39;eHars StNo 1&#39;,&#39;eHars StNo 2&#39;,&#39;Match Weight&#39;], <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;colModel:[ <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;Select&#39;,index:&#39;Select&#39;,sortable:false}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;StateNumber1&#39;,index:&#39;StateNumber1&#39;}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;StateNumber2&#39;,index:&#39;StateNumber2&#39;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;eHarsStNo1&#39;,index:&#39;eHarsStNo1&#39;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;eHarsStNo2&#39;,index:&#39;eHarsStNo2&#39;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;MatchWeight&#39;,index:&#39;MatchWeight&#39;},<br />&#160;&#160; &#160;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; ],<br />&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; multiselect: false, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; height: "70%",<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; autowidth: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; altClass: &#39;altRow&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; altRows: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; pager : &#39;#gridpager&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; pgbuttons: false,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; pginput: false,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; caption: "Click on the first State Number in the pairs of statenos below to combine" <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }).navGrid(&#39;#gridpager&#39;, {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; refresh:true,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; refreshtitle:"Refresh Table Data",<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; search:false, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; edit: false, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; add:false, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; del:false<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; &#160;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; });</p>
<p>&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;var mydata = [</p>
</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; stuff to make data.....</p>
</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ]</p>
</p>
<p>&#160;&#160; &#160;&#160;&#160;&#160; {Select:"&#60;input type=&#39;radio&#39; name=&#39;merge&#39; onClick=&#39;goToMergeCheck()&#39;&#62;&#60;input type=hidden name=stateNo1 value=&#39;&#60;%=stateNo1%&#62;&#39;&#62;&#60;input type=hidden name=stateNo2 value=&#39;&#60;%=stateNo2%&#62;&#39;",StateNumber1:"&#60;%=stateNo1%&#62;",StateNumber2:"&#60;%=stateNo2%&#62;",eHarsStNo1:"&#60;%=eHarsNo1out%&#62;",eHarsStNo2:"&#60;%=eHarsNo2out%&#62;",MatchWeight:"&#60;%=HTML.formatForTD(matchKey)%&#62;"},</p>
</p>
<p>]; for(var i=0;i&#60;=mydata.length;i++) jQuery("#myTable").jqGrid(&#39;addRowData&#39;,i+1,mydata[i]);</p>
]]></description>
        	        	<pubDate>Fri, 04 Jun 2010 17:16:32 +0300</pubDate>
        </item>
</channel>
</rss>