<?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 3.7.2 bug with IE8 while using jqGrid debugging</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging</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/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>OlegK on jqGrid 3.7.2 bug with IE8 while using jqGrid debugging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p21594</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p21594</guid>
        	        	<description><![CDATA[<p>Hello Tony!</p>
<p>The only disadvantage which I could find in the usage of <strong>document.writeln</strong> technique is that it is not work for XML files (XHTML files which hat additional line <strong>&#60;?xml version="1.0" encoding="utf-8"?&#62;</strong>&#160;at the beginning). It is&#160;seldom&#160;used, but it is used.</p>
<p>So in my opinion the most pragmatical solution would be to publish uncompressed version <strong>jquery.jqGrid-3.8.3.js</strong> file which will be contain all uncompressed files from which consist jqGrid (like I&#160;suggested&#160;you before someone). If you continue to include <strong>grid.loader.js</strong>, then at least for Internet Explorer it should be fixed to use <strong>document.writeln</strong>&#160;technique.</p>
<p>Best regards<br />Oleg&#160;</p>
]]></description>
        	        	<pubDate>Sun, 09 Jan 2011 22:33:32 +0200</pubDate>
        </item>
        <item>
        	<title>archan.bhatt on jqGrid 3.7.2 bug with IE8 while using jqGrid debugging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p21512</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p21512</guid>
        	        	<description><![CDATA[<p>Thanks Oleg for your help.</p>
</p>
<p>Archan</p>
]]></description>
        	        	<pubDate>Mon, 03 Jan 2011 17:47:35 +0200</pubDate>
        </item>
        <item>
        	<title>paulojsp on jqGrid 3.7.2 bug with IE8 while using jqGrid debugging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p21511</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p21511</guid>
        	        	<description><![CDATA[<p>hi Oleg,</p>
</p>
<p>it works fine now!<img class="spSmiley" style="margin:0" title="Smile" src="/blog/wp-content/forum-smileys/sf-smile.gif" alt="Smile" /></p>
</p>
<p>thanks for your help and patience.</p>
</p>
<p>Best Regards,</p>
</p>
<p>Paulo Pinto</p>
]]></description>
        	        	<pubDate>Mon, 03 Jan 2011 17:43:09 +0200</pubDate>
        </item>
        <item>
        	<title>OlegK on jqGrid 3.7.2 bug with IE8 while using jqGrid debugging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p21510</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p21510</guid>
        	        	<description><![CDATA[<p>Hi Paulo,</p>
<p>first of all the last modification which you made&#160;<strong>(function ($) {/*code here*/})(jQuery);</strong> is not correct. It was my error in my previous post. One should use</p>
<p><strong>$(function() {/*code here*/});</strong></p>
<p>or another more readable form</p>
<p><strong>$(document).ready(function () {/*code here*/});</strong></p>
<p>which wait for the document is loaded. The function <strong>(function ($) {/*code here*/})(jQuery);</strong>&#160;just redefines $ as jQuery and is helpful in case of usage of different JavaScripts libraries where $ is also defined.</p>
<p>Now about the last version of your code. If you verify your test page with <a href="http://validator.w3.org/check?uri=http://parkcars.info/?com=teste" target="_blank">validator.w3.org</a>&#160;you will see 21 errors. After some changes in your code I&#160;eliminated the errors and could reproduce your problem. <strong><span style="text-decoration: underline;">I see the problem as a bug in the grid.loader.js</span></strong>. The problem is that with the current version of grid.loader.js the JavaScript files which belongs to jqGrid will be loaded&#160;parallel&#160;and executed in the order in which the load process are completed and not in the order in which the files are started be loaded. So depend on many undeterministic&#160;reasons the execution order of the JavaScript files could be wrong. The problem and the corresponding solution is described <a href="http://blogs.msdn.com/b/kristoffer/archive/2006/12/22/loading-javascript-files-in-parallel.aspx" target="_blank">here</a>. So I made a fix in the grid.loader.js (see results <a href="http://www.ok-soft-gmbh.com/jqGrid/jquery.jqGrid-3.8.2/src/grid.loader-fixed.js" target="_blank">here</a>).</p>
<p>After all <a href="http://www.ok-soft-gmbh.com/jqGrid/iedeveloper.htm" target="_blank">the modified version</a>&#160;of your page work in all browsers in which I tested it (last versions or Firefox, Opera, Safari, IE9 beta, IE8):</p>
<p><input type='button' class='sfcodeselect' name='sfselectit7990' value='Select Code' data-codeid='sfcode7990' /></p>
<div class='sfcode' id='sfcode7990'>// This file should be used if you want to debug<br /> function jqGridInclude()<br /> {<br />&#160;&#160; &#160;var pathtojsfiles = &#34;/jqGrid/jquery.jqGrid-3.8.2/src/&#34;; // need to be ajusted<br />&#160;&#160; &#160;// set include to false if you do not want some modules to be included<br />&#160;&#160; &#160;var modules = [<br />&#160;&#160; &#160; &#160; &#160;{ include: true, incfile:&#39;i18n/grid.locale-en.js&#39;}, // jqGrid translation<br />&#160;&#160; &#160; &#160; &#160;{ include: true, incfile:&#39;grid.base.js&#39;}, // jqGrid base<br />&#160;&#160; &#160; &#160; &#160;{ include: true, incfile:&#39;grid.common.js&#39;}, // jqGrid common for editing<br />&#160;&#160; &#160; &#160; &#160;{ include: true, incfile:&#39;grid.formedit.js&#39;}, // jqGrid Form editing<br />&#160;&#160; &#160; &#160; &#160;{ include: true, incfile:&#39;grid.inlinedit.js&#39;}, // jqGrid inline editing<br />&#160;&#160; &#160; &#160; &#160;{ include: true, incfile:&#39;grid.celledit.js&#39;}, // jqGrid cell editing<br />&#160;&#160; &#160; &#160; &#160;{ include: true, incfile:&#39;grid.subgrid.js&#39;}, //jqGrid subgrid<br />&#160;&#160; &#160; &#160; &#160;{ include: true, incfile:&#39;grid.treegrid.js&#39;}, //jqGrid treegrid<br />&#160;&#160; &#160; &#160; &#160;{ include: true, incfile:&#39;grid.custom.js&#39;}, //jqGrid custom<br />&#160;&#160; &#160; &#160; &#160;{ include: true, incfile:&#39;grid.postext.js&#39;}, //jqGrid postext<br />&#160;&#160; &#160; &#160; &#160;{ include: true, incfile:&#39;grid.tbltogrid.js&#39;}, //jqGrid table to grid<br />&#160;&#160; &#160; &#160; &#160;{ include: true, incfile:&#39;grid.setcolumns.js&#39;}, //jqGrid setcolumns<br />&#160;&#160; &#160; &#160; &#160;{ include: true, incfile:&#39;grid.import.js&#39;}, //jqGrid import<br />&#160;&#160; &#160; &#160; &#160;{ include: true, incfile:&#39;grid.grouping.js&#39;}, //jqGrid grouping<br />&#160;&#160; &#160; &#160; &#160;{ include: true, incfile:&#39;jquery.fmatter.js&#39;}, //jqGrid formater<br />&#160;&#160; &#160; &#160; &#160;{ include: true, incfile:&#39;JsonXml.js&#39;}, //xmljson utils<br />&#160;&#160; &#160; &#160; &#160;{ include: true, incfile:&#39;jquery.searchFilter.js&#39;} // search Plugin<br />&#160;&#160; &#160;];<br />&#160;&#160; &#160;var filename;<br />&#160;&#160; &#160;for(var i=0;i&#60;modules.length; i++)<br />&#160;&#160; &#160;{<br />&#160;&#160; &#160; &#160; &#160;if(modules[i].include === true) {<br />&#160;&#160; &#160; &#160; &#160; &#160; &#160;filename = pathtojsfiles+modules[i].incfile;<br />&#160;&#160; &#160; &#160; &#160; &#160; &#160;document.writeln(&#34;&#60;script type=&#39;text/javascript&#39; src=&#39;&#34;+filename+&#34;&#39;&#62;&#60;/script&#62;&#34;);<br />&#160;&#160; &#160; &#160; &#160;}<br />&#160;&#160; &#160;}<br /> };<br /> jqGridInclude();</div>
<p>I hope Tony will read the answer and will fix grid.loader.js of <a href="https://github.com/tonytomov/jqGrid" target="_blank">https://github.com/tonytomov/jqGrid</a>. If he don&#39;t write his comment here in the next week I will open a separate bug report.</p>
<p>Best regards<br />Oleg&#160;</p></p>
]]></description>
        	        	<pubDate>Mon, 03 Jan 2011 16:47:16 +0200</pubDate>
        </item>
        <item>
        	<title>paulojsp on jqGrid 3.7.2 bug with IE8 while using jqGrid debugging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p21508</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p21508</guid>
        	        	<description><![CDATA[<p>Hi Oleg,</p>
<p>thanks for helping.</p>
</p>
<p>Sorry for the dirty code...</p>
</p>
<p>I&#39;ve clean the code, and add the defaults inside the</p>
<p>(function ($) {<br /> &#160;&#160; &#160;// place you code here<br /> })(jQuery);</p>
</p>
<p>The problem keeps on IE.</p>
</p>
<p>best Regards,</p>
<p>Paulo Pinto</p>
]]></description>
        	        	<pubDate>Mon, 03 Jan 2011 11:51:14 +0200</pubDate>
        </item>
        <item>
        	<title>OlegK on jqGrid 3.7.2 bug with IE8 while using jqGrid debugging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p21503</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p21503</guid>
        	        	<description><![CDATA[</p>
<p>Hello paulojsp,</p>
<p>It is difficult to me to help you because your test page is <strong>very very dirty</strong>. For example you include the files</p>
<p><strong><a href="http://parkcars.info/templates/teste/css/style.css" rel="nofollow" target="_blank"><a href="http://parkcars.info/templates" rel="nofollow">http://parkcars.info/templates</a>...../style.css</a></strong></p>
<p><strong><a href="http://parkcars.info/templates/teste/css/form_rectif.css" rel="nofollow" target="_blank"><a href="http://parkcars.info/templates" rel="nofollow">http://parkcars.info/templates</a>.....rectif.css</a></strong></p>
<p><strong><a href="http://parkcars.info/templates/teste/css/pro_drop_1.css" rel="nofollow" target="_blank"><a href="http://parkcars.info/templates" rel="nofollow">http://parkcars.info/templates</a>.....drop_1.css</a></strong></p>
<p><strong><a href="http://parkcars.info/templates/teste/css/front.css" rel="nofollow" target="_blank"><a href="http://parkcars.info/templates" rel="nofollow">http://parkcars.info/templates</a>...../front.css</a></strong></p>
<p><strong><a href="http://parkcars.info/templates/teste/css/ss.css" rel="nofollow" target="_blank"><a href="http://parkcars.info/templates" rel="nofollow">http://parkcars.info/templates</a>.....css/ss.css</a></strong></p>
<p><strong><a href="http://parkcars.info/templates/teste/css/botao.css" rel="nofollow" target="_blank"><a href="http://parkcars.info/templates" rel="nofollow">http://parkcars.info/templates</a>...../botao.css</a></strong></p>
<p><strong><a href="http://parkcars.info/templates/teste/js/jquery.tipsy.js" rel="nofollow" target="_blank"><a href="http://parkcars.info/templates" rel="nofollow">http://parkcars.info/templates</a>.....y.tipsy.js</a></strong></p>
<p><strong><a href="http://parkcars.info/templates/teste/css/style.css" rel="nofollow" target="_blank"><a href="http://parkcars.info/templates" rel="nofollow">http://parkcars.info/templates</a>...../style.css</a></strong></p>
<p>which not exist.</p>
<p>Then you <strong><span style="text-decoration: underline;">load many times different version of jQuery UI (!!!)</span></strong>. Here is the load order:</p>
<p><strong><a href="http://parkcars.info/media/icms/v01/js/jquery-ui-1.8.custom/css/mktazul/jquery-ui-1.8.1.custom.css" rel="nofollow" target="_blank"><a href="http://parkcars.info/media/icm" rel="nofollow">http://parkcars.info/media/icm</a>.....custom.css</a></strong></p>
<p><strong><a href="http://parkcars.info/media/icms/v01/js/jquery-ui-1.8.custom/js/jquery-ui-1.8.custom.min.js" rel="nofollow" target="_blank"><a href="http://parkcars.info/media/icm" rel="nofollow">http://parkcars.info/media/icm</a>.....tom.min.js</a></strong></p>
<p><strong><a href="http://parkcars.info/media/icms/v01/js/jquery-ui-1.8.6.custom/js/jquery-ui-1.8.6.custom.min.js" rel="nofollow" target="_blank"><a href="http://parkcars.info/media/icm" rel="nofollow">http://parkcars.info/media/icm</a>.....tom.min.js</a></strong></p>
<p><strong></strong><strong><a href="http://parkcars.info/" rel="nofollow" target="_blank">http://parkcars.info/</a> after the <a href="http://parkcars.info/media/icms/v01/js/jquery.jqGrid-3.8.2/src/grid.loader.js" rel="nofollow" target="_blank"><a href="http://parkcars.info/media/icm" rel="nofollow">http://parkcars.info/media/icm</a>......loader.js</a>, but it run&#160;</strong><strong>before</strong> the files from grid.loader.js will be&#160;executed. I suggest that you place the code from jqgrid.defaults.1.1.js inside the</p>
<p><input type='button' class='sfcodeselect' name='sfselectit8594' value='Select Code' data-codeid='sfcode8594' /></p>
<div class='sfcode' id='sfcode8594'>(function ($) {<br /> &#160;&#160; &#160;// place you code here<br /> })(jQuery);</div>
<p>(or inside of jQuery(document).ready(function () {/*place the code here*/});). Then you can be sure that you code like <strong>jQuery.extend(jQuery.jgrid.defaults, { /*...*/})</strong> work <strong>after</strong> the jqGrid are loaded.</p>
<p>First of all you should produce clear code and then one can make the code working in all web browsers.</p>
<p>Best Regards<br />Oleg&#160;</p>
]]></description>
        	        	<pubDate>Sun, 02 Jan 2011 14:03:08 +0200</pubDate>
        </item>
        <item>
        	<title>paulojsp on jqGrid 3.7.2 bug with IE8 while using jqGrid debugging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p21497</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p21497</guid>
        	        	<description><![CDATA[<p>Hello Oleg,</p>
<p>&#160; Thought jquery.jqGrid.min.js was the main library and the files were uploaded with load.js are the plugins to the library.</p>
<p> So, fix this problem and put a grid on this new page:<br /> <a href="http://parkcars.info/?com=teste" target="_blank">http://parkcars.info/?com=teste</a></p>
<p> The problem keeps on IE.</p>
<p> How can I solve it?</p>
<p> Best Regards,<br /> Paulo Pinto</p>
</p>
<p>ps: sorry for my bad english</p>
]]></description>
        	        	<pubDate>Fri, 31 Dec 2010 14:16:17 +0200</pubDate>
        </item>
        <item>
        	<title>OlegK on jqGrid 3.7.2 bug with IE8 while using jqGrid debugging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p21495</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p21495</guid>
        	        	<description><![CDATA[<p>Hi paulojsp,</p>
<p>On the page <a href="http://formar.inweb.pt/?com=cursos&#038;act=disponiveis" rel="nofollow" target="_blank"><a href="http://formar.inweb.pt/?com=cu" rel="nofollow">http://formar.inweb.pt/?com=cu</a>.....isponiveis</a> you load jqGrid twice: one time as <a href="http://formar.inweb.pt/media/icms/v01/js/jquery.jqGrid-3.6.2/js/jquery.jqGrid.min.js" rel="nofollow" target="_blank"><a href="http://formar.inweb.pt/media/i" rel="nofollow">http://formar.inweb.pt/media/i</a>.....rid.min.js</a> and another time as <a href="http://formar.inweb.pt/media/icms/v01/js/jquery.jqGrid-3.6.2/src/grid.loader.js" rel="nofollow" target="_blank"><a href="http://formar.inweb.pt/media/i" rel="nofollow">http://formar.inweb.pt/media/i</a>......loader.js</a>. So it is not good example.</p>
<p>Best regards<br />Oleg</p>
]]></description>
        	        	<pubDate>Fri, 31 Dec 2010 01:36:58 +0200</pubDate>
        </item>
        <item>
        	<title>paulojsp on jqGrid 3.7.2 bug with IE8 while using jqGrid debugging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p21490</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p21490</guid>
        	        	<description><![CDATA[<p>Hi,</p>
<p>I have the same problem... Works fine in FF but in IE when i hit refresh button on browser or hit F5 the grid doesn&#39;t work fine, but if i press enter in the url address bar the grid works fine....</p>
<p>you can see an example in this website:</p>
<p><a href="http://formar.inweb.pt/?com=cursos&#038;act=disponiveis" rel="nofollow" target="_blank"><a href="http://formar.inweb.pt/?com=cu" rel="nofollow">http://formar.inweb.pt/?com=cu</a>.....isponiveis</a></p>
<p>if the grid doesn&#39;t work fine in IE at start, click on the url and press enter..</p>
<p>can anyone help...</p>
<p>best regards,</p>
<p>Paulo Pinto</p>
]]></description>
        	        	<pubDate>Thu, 30 Dec 2010 12:33:33 +0200</pubDate>
        </item>
        <item>
        	<title>archan.bhatt on jqGrid 3.7.2 bug with IE8 while using jqGrid debugging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p20258</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p20258</guid>
        	        	<description><![CDATA[<blockquote>
<p>kheang said:</p>
<blockquote>
<p>archan.bhatt said:</p>
<blockquote>
<p>tony said:</p>
<p>Hello,</p>
<p>I think that this should work, because there is no problem in my IE8 (in I7 mode it works ok too)</p>
<p>You are the first one that reported this problem, but as I say - "Ende gut - alles gut" <img class="spSmiley" style="margin:0" title="Smile" src="http://www.trirand.com/blog/wp-content/forum-smileys/sf-smile.gif" alt="Smile" /></p>
</p>
<p>Kind Regards</p>
<p>Tony</p>
</blockquote>
<hr />
<p>Somehow, my IE8 does not run properly. When I write the url and hit enter, it works fine but when I press refresh (or F5), it crashes!</p>
</p>
<p>Regards,</p>
<p>Archan</p>
</blockquote>
<hr />
<p>Hi Archan,</p>
<p>Did you ever figure out how or why it was doing this? <br />As I am also having the same problem, I am starting a new jqGrid from scratch to test another issue i&#39;m having but I&#39;m getting this issue here but with the 3.8 version. Only in IE compatibility mode and IE 8 so far.</p>
</blockquote>
<hr />
<p>I did not try with 3.8 in debug mode, butyou can tweak with the same code as I metioned above which works fine in IE (any mode).</p>
</p>
<p>-Archan</p>
]]></description>
        	        	<pubDate>Tue, 12 Oct 2010 17:10:12 +0300</pubDate>
        </item>
        <item>
        	<title>kheang on jqGrid 3.7.2 bug with IE8 while using jqGrid debugging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p20255</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p20255</guid>
        	        	<description><![CDATA[<blockquote>
<p>archan.bhatt said:</p>
<blockquote>
<p>tony said:</p>
<p>Hello,</p>
<p>I think that this should work, because there is no problem in my IE8 (in I7 mode it works ok too)</p>
<p>You are the first one that reported this problem, but as I say - "Ende gut - alles gut" <img class="spSmiley" style="margin:0" title="Smile" src="http://www.trirand.com/blog/wp-content/forum-smileys/sf-smile.gif" alt="Smile" /></p>
</p>
<p>Kind Regards</p>
<p>Tony</p>
</blockquote>
<hr />
<p>Somehow, my IE8 does not run properly. When I write the url and hit enter, it works fine but when I press refresh (or F5), it crashes!</p>
</p>
<p>Regards,</p>
<p>Archan</p>
</blockquote>
<hr />
<p>Hi Archan,</p>
<p>Did you ever figure out how or why it was doing this? <br />As I am also having the same problem, I am starting a new jqGrid from scratch to test another issue i&#39;m having but I&#39;m getting this issue here but with the 3.8 version. Only in IE compatibility mode and IE 8 so far.</p>
]]></description>
        	        	<pubDate>Tue, 12 Oct 2010 16:45:37 +0300</pubDate>
        </item>
        <item>
        	<title>archan.bhatt on jqGrid 3.7.2 bug with IE8 while using jqGrid debugging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p19174</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p19174</guid>
        	        	<description><![CDATA[<blockquote>
<p>tony said:</p>
<p>Hello,</p>
<p>I think that this should work, because there is no problem in my IE8 (in I7 mode it works ok too)</p>
<p>You are the first one that reported this problem, but as I say - "Ende gut - alles gut" <img class="spSmiley" style="margin:0" title="Smile" src="http://www.trirand.com/blog/wp-content/forum-smileys/sf-smile.gif" alt="Smile" /></p>
</p>
<p>Kind Regards</p>
<p>Tony</p>
</blockquote>
<hr />
<p>Somehow, my IE8 does not run properly. When I write the url and hit enter, it works fine but when I press refresh (or F5), it crashes!</p>
</p>
<p>Regards,</p>
<p>Archan</p>
]]></description>
        	        	<pubDate>Tue, 17 Aug 2010 23:04:32 +0300</pubDate>
        </item>
        <item>
        	<title>tony on jqGrid 3.7.2 bug with IE8 while using jqGrid debugging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p19164</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p19164</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>I think that this should work, because there is no problem in my IE8 (in I7 mode it works ok too)</p>
<p>You are the first one that reported this problem, but as I say - "Ende gut - alles gut" <img class="spSmiley" style="margin:0" title="Smile" src="/blog/wp-content/forum-smileys/sf-smile.gif" alt="Smile" /></p>
</p>
<p>Kind Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 17 Aug 2010 22:29:23 +0300</pubDate>
        </item>
        <item>
        	<title>archan.bhatt on jqGrid 3.7.2 bug with IE8 while using jqGrid debugging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p19108</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging#p19108</guid>
        	        	<description><![CDATA[<p>Hi Tony,</p>
</p>
<p>I found a bug in jqGrid 3.7.2. While using jqGrid in debugging mode using grid.loader.js in IE8, IE8 does not load all the require files. It also requires ajax call like Safari.</p>
<p>Current code: if(jQuery.browser.safari) {</p>
</p>
<p>I changed it to this</p>
<p>if(jQuery.browser.safari &#124;&#124; jQuery.browser.msie) {</p>
</p>
<p>and it works!</p>
</p>
<p>Regards,</p>
<p>Archan Bhatt</p>
]]></description>
        	        	<pubDate>Thu, 12 Aug 2010 21:01:28 +0300</pubDate>
        </item>
</channel>
</rss>