<?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: Multiple Grids pager problem only in firefox</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/multiple-grids-pager-problem-only-in-firefox</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/multiple-grids-pager-problem-only-in-firefox/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>strgg on Multiple Grids pager problem only in firefox</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/multiple-grids-pager-problem-only-in-firefox#p22683</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/multiple-grids-pager-problem-only-in-firefox#p22683</guid>
        	        	<description><![CDATA[<p>Any news on this tony?</p>
</p>
<p>thanks</p>
]]></description>
        	        	<pubDate>Wed, 06 Apr 2011 15:35:51 +0300</pubDate>
        </item>
        <item>
        	<title>strgg on Multiple Grids pager problem only in firefox</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/multiple-grids-pager-problem-only-in-firefox#p22549</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/multiple-grids-pager-problem-only-in-firefox#p22549</guid>
        	        	<description><![CDATA[<p>@tony</p>
<p>Could you please give a short feedback if Oleg&#39;s fix will be taken into a update?</p>
<p><strong><br /></strong></p>
<p><strong>THANKS</strong></p>
]]></description>
        	        	<pubDate>Fri, 25 Mar 2011 19:17:50 +0200</pubDate>
        </item>
        <item>
        	<title>strgg on Multiple Grids pager problem only in firefox</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/multiple-grids-pager-problem-only-in-firefox#p22500</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/multiple-grids-pager-problem-only-in-firefox#p22500</guid>
        	        	<description><![CDATA[<p>Hi Oleg</p>
</p>
<p>Thanks for your response! Very glad about your post.</p>
<p>Yes i thought also about that but then i thought maybe the browser should walk the dom (coming from different trees (id of grid)) and resolve correctly. But your posted fix resolves the issue, so you got the problem at the root.</p>
</p>
<p>Maybe tony will implement that in a future upgrade so that we have also <em>a minified </em>version of it.</p>
</p>
<p>Thanks</p>
<p>bytheway;</p>
<p>Something strange i discovered is if i create the 2 grids with plain html it will not conflict but if i create them dynamically only then it conflicts. Part of my script is as follows:</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit6136' value='Select Code' data-codeid='sfcode6136' /></p>
<div class='sfcode' id='sfcode6136'>jQuery(document).ready(function(){</p>
<p>&#160;&#160; &#160;setTimeout(function() {</p>
<p>&#160;&#160; &#160;jQuery(&#34;#&#60;?php echo $grid_name;?&#62;&#34;).jqGrid({<br />&#160;&#160; &#160;&#160;&#160; &#160;url:&#39;modul/modul_jqgrid/ex_get3.php?tb=&#60;?php echo $tb;?&#62;&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;datatype: &#39;xml&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;mytype:&#39;POST&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;colNames:[&#60;?php echo $col_names;?&#62;],<br />&#160;&#160; &#160;&#160;&#160; &#160;colModel :[<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;?php echo $col_models;?&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;],<br />&#160;&#160; &#160;&#160;&#160; &#160;pager: &#39;#&#60;?php echo $toolbar_name;?&#62;&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;rowNum:&#60;?php echo $row_num;?&#62;,<br />&#160;&#160; &#160;&#160;&#160; &#160;rowList:[&#60;?php echo $row_list;?&#62;],<br />&#160;&#160; &#160;&#160;&#160; &#160;sortname: &#39;&#60;?php echo $sort_name;?&#62;&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;sortorder: &#39;&#60;?php echo $sort_order;?&#62;&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;height: &#34;&#60;?php echo $height;?&#62;&#34;,<br />&#160;&#160; &#160;&#160;&#160; &#160;viewrecords: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;altRows : true,<br />&#160;&#160; &#160;&#160;&#160; &#160;caption: &#39;&#60;?php echo $grid_title;?&#62;&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;editurl:&#34;modul/modul_jqgrid/ex_edit3.php?tb=&#60;?php echo $tb;?&#62;&#34;&#60;?php if (!empty($add)){ echo &#34;,n&#34;;}?&#62;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;?php if (!empty($add)){ echo $add;}?&#62;<br />&#160;&#160; &#160;});</p>
<p>&#160;&#160; &#160;jQuery(&#34;#&#60;?php echo $grid_name;?&#62;&#34;).jqGrid(&#39;navGrid&#39;,&#39;#&#60;?php echo $toolbar_name;?&#62;&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#60;?php echo $usertypevar;?&#62; // {edit:true,add:true,del:true,search:true}, //options<br />&#160;&#160; &#160;&#160;&#160; &#160;{height:480,reloadAfterSubmit:true,closeAfterEdit:true}, // edit options<br />&#160;&#160; &#160;&#160;&#160; &#160;{height:480,reloadAfterSubmit:true,closeAfterAdd:true}, // add options<br />&#160;&#160; &#160;&#160;&#160; &#160;{}, // del options<br />&#160;&#160; &#160;&#160;&#160; &#160;{closeAfterSearch:true} // search options<br />&#160;&#160; &#160;);</p>
<p>&#160;&#160; &#160;&#60;?php echo $add_outer;?&#62;<br />&#160;&#160; &#160;<br />&#160;&#160; &#160;}, &#60;?php echo $timeout;?&#62;)<br />});<br />&#160;&#160; &#160;&#60;?php echo $add_outside;?&#62;</p>
</div>
<p><input type='button' class='sfcodeselect' name='sfselectit4121' value='Select Code' data-codeid='sfcode4121' /></p>
<div class='sfcode' id='sfcode4121'>&#160;&#60;table id=&#34;&#60;?php echo $grid_name;?&#62;&#34;&#62;&#60;/table&#62;<br />&#60;div id=&#34;&#60;?php echo $toolbar_name;?&#62;&#34;&#62;&#60;/div&#62;</div>
<p>The output from the html in firebug, even the $_GET in the network-tab are all the same like in the plain html 2-grid example.</p>
<p>Maybe the response from the grid at loading the $_GET ( the rows, number, cols, &#8230;) can&#39;t identify in some browsers (firefox) the target correctly. It has to be like this and your fix solved it.</p>
<p>I wrote that for the people who are trying to do the multi grids to reproduce the error, saying them that it mainly appears with <strong><span style="text-decoration: underline;">dynamically produced grids </span></strong>(php variables) &#8230; at least based on my experience.</p>
</p>
<p>Best regards and thanks for&#160; responses and help &#8230; maybe tony will let us know his guesses about the issue too</p>
<p>Thanks Oleg</p>
<p>Regards,<br />Gerry</p>
]]></description>
        	        	<pubDate>Mon, 21 Mar 2011 18:35:43 +0200</pubDate>
        </item>
        <item>
        	<title>OlegK on Multiple Grids pager problem only in firefox</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/multiple-grids-pager-problem-only-in-firefox#p22492</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/multiple-grids-pager-problem-only-in-firefox#p22492</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>I am sure that it is the jqGrid bug. The problem is that in the pager jqGrid use currently non-unique ids like "first", "prev", "next" and "last". I posted <a href="/blog/?page_id=393/bugs/non-unique-ids-firstprevnextlastsp_1-and-jqgh_colname-used-in-the-pager/#p22493" target="_blank">here</a>&#160;the corresponding fix of the problem.</p>
<p>Best regards<br />Oleg&#160;</p>
]]></description>
        	        	<pubDate>Mon, 21 Mar 2011 12:45:27 +0200</pubDate>
        </item>
        <item>
        	<title>strgg on Multiple Grids pager problem only in firefox</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/multiple-grids-pager-problem-only-in-firefox#p22475</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/multiple-grids-pager-problem-only-in-firefox#p22475</guid>
        	        	<description><![CDATA[<p>Hello Tony &#38; community</p>
<p>Thanks for this awesome grid. a perfect fit between slickgrid and extJs. slim and very versatile, love it.</p>
<p>I am playing arround with <strong>multiple grids on 1 page</strong> which works fine if i give unique id&#39;s for the #grid and the #pager.</p>
</p>
<p>Facts: <br />- Everything Works in Internet Explorer perfectly <br />- Anything works in Firefox <strong>except</strong> pagination</p>
<p>- i wrote a php script to load the both grids dynamically with variables<br />- the data from the sql-database is loaded correctly with unique id&#39;s<br />- the tables, grid-name and pager-name are all unique</p>
<p>Problem:<br />- In firefox the pagination does not appear correctly -&#62;pic 1</p>
<p>- If i load the second grid&#39;s jquery with setTimeout(function() {....},1)&#160; -&#62;pic2 , than the pagination appears correctly But the second page than does not set the "first"-pagination button to enabled -&#62;pic3.</p>
</p>
<p>HELP ON:<br />hint me what to look for.</p>
<p>normal load: does not show ...from(von) x.... pagination of 2nd grid not clickable</p>
<p>[Image Can Not Be Found]</p>
<p>with timeout: 2nd grids pagination getting loaded correctly</p>
<p>[Image Can Not Be Found]</p>
<p>
with timeout 2nd page: backwards not possible on 2nd grid.</p>
<p>[Image Can Not Be Found]</p>
<p>Please help with a short hint what have i to look for.</p>
]]></description>
        	        	<pubDate>Sat, 19 Mar 2011 21:04:33 +0200</pubDate>
        </item>
</channel>
</rss>