<?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-4.4.1:Firefox/Chrome didn't completely load Modules.</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-4-4-1firefoxchrome-didnt-completely-load-modules</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-4-4-1firefoxchrome-didnt-completely-load-modules/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>wangbin on jqgrid-4.4.1:Firefox/Chrome didn't completely load Modules.</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-4-4-1firefoxchrome-didnt-completely-load-modules#p29382</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-4-4-1firefoxchrome-didnt-completely-load-modules#p29382</guid>
        	        	<description><![CDATA[<p>Here is the artical.(Sorry I don&#39;t know how to post the link.)</p>
<p><a class="sficon sfpath" href="/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging/" target="_blank">jqGrid 3.7.2 bug with IE8 while using jqGrid debugging</a></p>
<p>/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging/#p21510</p>
]]></description>
        	        	<pubDate>Fri, 23 Aug 2013 07:21:50 +0300</pubDate>
        </item>
        <item>
        	<title>wangbin on jqgrid-4.4.1:Firefox/Chrome didn't completely load Modules.</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-4-4-1firefoxchrome-didnt-completely-load-modules#p29381</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/jqgrid-4-4-1firefoxchrome-didnt-completely-load-modules#p29381</guid>
        	        	<description><![CDATA[<p>Dear All:</p>
<p>I am useing jqgrid-4.4.1 and I found Firefox/Chrome didn&#39;t completely load Modules.</p>
<p>There are some errors in the console.When I clicked custimized Add button,it didn&#39;t work.</p>
<p>In IE and Safari it&#39;s OK.Here is the error detail.</p>
<p>-------------------------------------------------------------------------------------------------------------------------------------</p>
<p><span style="color: #ff0000;">Firefox &#160;errors:</span></p>
<p>[13:06:39.063] uncaught exception: jqGrid - No such method: GridUnload[13:06:38.694] TypeError: $.jgrid.extend is not a function @ plugins/jqgrid-4.4.1/js/grid.custom.js:801[13:06:38.690] TypeError: $.jgrid.extend is not a function @ plugins/jqgrid-4.4.1/js/grid.grouping.js:369[13:06:38.687] TypeError: $.jgrid.extend is not a function @ plugins/jqgrid-4.4.1/js/grid.treegrid.js:555[13:06:38.684] TypeError: $.jgrid.extend is not a function @ plugins/jqgrid-4.4.1/js/grid.formedit.js:2097[13:06:38.677] TypeError: $.jgrid.extend is not a function @ plugins/jqgrid-4.4.1/js/grid.subgrid.js:279[13:06:38.671] TypeError: $.jgrid.extend is not a function @ plugins/jqgrid-4.4.1/js/grid.inlinedit.js:604[13:06:38.669] TypeError: $.jgrid.extend is not a function @ plugins/jqgrid-4.4.1/js/grid.celledit.js:462</p>
<p>-------------------------------------------------------------------------------------------------------------------------------------</p>
<p>-------------------------------------------------------------------------------------------------------------------------------------</p>
<p><span style="color: #ff0000;">Chrome &#160;errors:</span></p>
<p>Uncaught TypeError: Object #&#60;Object&#62; has no method &#39;extend&#39; grid.custom.js:16Uncaught TypeError: Object #&#60;Object&#62; has no method &#39;extend&#39; grid.formedit.js:14Uncaught TypeError: Object #&#60;Object&#62; has no method &#39;extend&#39; grid.grouping.js:28Uncaught TypeError: Object #&#60;Object&#62; has no method &#39;extend&#39; grid.treegrid.js:14Uncaught TypeError: Object #&#60;Object&#62; has no method &#39;extend&#39; grid.subgrid.js:13Uncaught TypeError: Object #&#60;Object&#62; has no method &#39;extend&#39; grid.inlinedit.js:14Uncaught TypeError: Object #&#60;Object&#62; has no method &#39;extend&#39; grid.celledit.js:33Uncaught TypeError: Object [object Object] has no method &#39;clearGridData&#39;&#160;</p>
<p>-------------------------------------------------------------------------------------------------------------------------------------</p>
<p>I fonud this artical.&#160;</p>
<p>/blog/?page_id=393/bugs/jqgrid-3-7-2-bug-with-ie8-while-using-jqgrid-debugging/#p21510</p>
<p>And I changed the section in jquery.jqGrid.js as below.It works good.</p>
<p>So I want to confirm that is this a bug.</p>
<p><span style="color: #ff0000;">Before Change:</span></p>
<p>var filename;</p>
<p>for(var i=0;i&#60;modules.length; i++)</p>
<p>{</p>
<p>if(modules[i].include === true) {</p>
<p>filename = pathtojsfiles+modules[i].incfile;</p>
<p>if(jQuery.browser.safari) {</p>
<p>jQuery.ajax({url:filename,dataType:&#39;script&#39;, async:false, cache: true});</p>
<p>} else {</p>
<p>if (jQuery.browser.msie) {</p>
<p>document.write(&#39;&#60;script charset="utf-8" type="text/javascript" src="&#39;+filename+&#39;"&#62;&#60;/script&#62;&#39;);</p>
<p>} else {</p>
<p><span style="color: #ff0000;">IncludeJavaScript(filename);</span></p>
<p>}</p>
<p>}</p>
<p>}</p>
<p>}</p>
<p><span style="color: #ff0000;">After Change:</span></p>
<p>var filename;</p>
<p>for(var i=0;i&#60;modules.length; i++)</p>
<p>{</p>
<p>if(modules[i].include === true) {</p>
<p>filename = pathtojsfiles+modules[i].incfile;</p>
<p>if(jQuery.browser.safari) {</p>
<p>jQuery.ajax({url:filename,dataType:&#39;script&#39;, async:false, cache: true});</p>
<p>} else {</p>
<p>if (jQuery.browser.msie) {</p>
<p>document.write(&#39;&#60;script charset="utf-8" type="text/javascript" src="&#39;+filename+&#39;"&#62;&#60;/script&#62;&#39;);</p>
<p>} else {</p>
<p><span style="color: #ff0000;">//IncludeJavaScript(filename);</span></p>
<p><span style="color: #ff0000;">document.writeln("&#60;script type=&#39;text/javascript&#39; src=&#39;"+filename+"&#39;&#62;&#60;/script&#62;");</span></p>
<p>}</p>
<p>}</p>
<p>}</p>
<p>}</p>
</p>
<p>Best Regard,</p>
<p>Bin Wang</p>
]]></description>
        	        	<pubDate>Fri, 23 Aug 2013 07:20:57 +0300</pubDate>
        </item>
</channel>
</rss>