<?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: Grid is not work in IE and Opera</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/grid-is-not-work-in-ie-and-opera</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/grid-is-not-work-in-ie-and-opera/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Grid is not work in IE and Opera</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/grid-is-not-work-in-ie-and-opera#p6940</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/grid-is-not-work-in-ie-and-opera#p6940</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>It seems to be a loader problem.</p>
<p>Also try to include all the scripts from the jqGrid loader in the head section manually and try.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Thu, 28 May 2009 04:27:05 +0300</pubDate>
        </item>
        <item>
        	<title>romka on Grid is not work in IE and Opera</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/grid-is-not-work-in-ie-and-opera#p6901</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/grid-is-not-work-in-ie-and-opera#p6901</guid>
        	        	<description><![CDATA[<p>I try to create a Grid. In the FF 3 its work fine, but in opera 9.51&#160;and explorer 7 it&#39;s not work <img class="wp-smiley" src="/blog/wp-includes/images/smilies/icon_sad.gif" alt=":(" /></p>
<p>For example, i used this code from <a href="http://www.secondpersonplural.ca/jqgriddocs/index.htm" rel="nofollow" target="_blank"><a href="http://www.secondpersonplural" rel="nofollow">http://www.secondpersonplural</a>....../index.htm</a>:</p>
<pre><div class="htmlcode"><span class="elements">&#60;html&#62;</span><br /><span class="elements">&#60;head&#62;</span><br /><span class="elements">&#60;title&#62;</span>jqGrid Demo<span class="elements">&#60;/title&#62;</span><br /><span class="elements">&#60;link</span> <span class="attributes">rel=</span><span class="codestring">"stylesheet"</span> <span class="attributes">type=</span><span class="codestring">"text/css"</span> <span class="attributes">media=</span><span class="codestring">"screen"</span> <span class="attributes">href=</span><span class="codestring">"themes/basic/grid.css"</span> /&#62;<br /><span class="elements">&#60;link</span> <span class="attributes">rel=</span><span class="codestring">"stylesheet"</span> <span class="attributes">type=</span><span class="codestring">"text/css"</span> <span class="attributes">media=</span><span class="codestring">"screen"</span> <span class="attributes">href=</span><span class="codestring">"themes/jqModal.css"</span> /&#62;<br /><span class="elements">&#60;script</span> <span class="attributes">src=</span><span class="codestring">"jquery.js"</span> <span class="attributes">type=</span><span class="codestring">"text/javascript"</span>&#62;<span class="elements">&#60;/script&#62;</span><br /><span class="elements">&#60;script</span> <span class="attributes">src=</span><span class="codestring">"jquery.jqGrid.js"</span> <span class="attributes">type=</span><span class="codestring">"text/javascript"</span>&#62;<span class="elements">&#60;/script&#62;</span><br /><span class="elements">&#60;script</span> <span class="attributes">src=</span><span class="codestring">"js/jqModal.js"</span> <span class="attributes">type=</span><span class="codestring">"text/javascript"</span>&#62;<span class="elements">&#60;/script&#62;</span><br /><span class="elements">&#60;script</span> <span class="attributes">src=</span><span class="codestring">"js/jqDnR.js"</span> <span class="attributes">type=</span><span class="codestring">"text/javascript"</span>&#62;<span class="elements">&#60;/script&#62;</span><br /><span class="elements">&#60;script</span> <span class="attributes">type=</span><span class="codestring">"text/javascript"</span>&#62;<br />jQuery(document).ready(function(){ <br />  jQuery(<span class="codestring">"#list"</span>).jqGrid({<br />    url:<span class="codestring">&#39;example.php&#39;</span>,<br />    datatype: <span class="codestring">&#39;xml&#39;</span>,<br />    mtype: <span class="codestring">&#39;GET&#39;</span>,<br />    colNames:[<span class="codestring">&#39;Inv No&#39;</span>,<span class="codestring">&#39;Date&#39;</span>, <span class="codestring">&#39;Amount&#39;</span>,<span class="codestring">&#39;Tax&#39;</span>,<span class="codestring">&#39;Total&#39;</span>,<span class="codestring">&#39;Notes&#39;</span>],<br />    colModel :[ <br />      {name:<span class="codestring">&#39;invid&#39;</span>, index:<span class="codestring">&#39;invid&#39;</span>, width:55}, <br />      {name:<span class="codestring">&#39;invdate&#39;</span>, index:<span class="codestring">&#39;invdate&#39;</span>, width:90}, <br />      {name:<span class="codestring">&#39;amount&#39;</span>, index:<span class="codestring">&#39;amount&#39;</span>, width:80, align:<span class="codestring">&#39;right&#39;</span>}, <br />      {name:<span class="codestring">&#39;tax&#39;</span>, index:<span class="codestring">&#39;tax&#39;</span>, width:80, align:<span class="codestring">&#39;right&#39;</span>}, <br />      {name:<span class="codestring">&#39;total&#39;</span>, index:<span class="codestring">&#39;total&#39;</span>, width:80, align:<span class="codestring">&#39;right&#39;</span>}, <br />      {name:<span class="codestring">&#39;note&#39;</span>, index:<span class="codestring">&#39;note&#39;</span>, width:150, sortable:false} ],<br />    pager: jQuery(<span class="codestring">&#39;#pager&#39;</span>),<br />    rowNum:10,<br />    rowList:[10,20,30],<br />    sortname: <span class="codestring">&#39;id&#39;</span>,<br />    sortorder: <span class="codestring">"desc"</span>,<br />    viewrecords: true,<br />    imgpath: <span class="codestring">&#39;themes/basic/images&#39;</span>,<br />    caption: <span class="codestring">&#39;My first grid&#39;</span><br />  }); <br />}); <br /><span class="elements">&#60;/script&#62;</span><br /><span class="elements">&#60;/head&#62;</span> <br /><span class="elements">&#60;body&#62;</span> <br /><span class="elements">&#60;table</span> <span class="attributes">id=</span><span class="codestring">"list"</span> <span class="attributes">class=</span><span class="codestring">"scroll"</span>&#62;<span class="elements">&#60;/table&#62;</span> <br /><span class="elements">&#60;div</span> <span class="attributes">id=</span><span class="codestring">"pager"</span> <span class="attributes">class=</span><span class="codestring">"scroll"</span> <span class="attributes">style=</span><span class="codestring">"text-align:center;"</span>&#62;<span class="elements">&#60;/div&#62;</span> <br /><span class="elements">&#60;/body&#62;</span> <br /><span class="elements">&#60;/html&#62;<br /><br />In IE i have an error: "b.jgrid.defaults is null or is not object"<br />In Opera:<br />"JavaScript - ***<br />Event thread: DOMContentLoaded<br />Error:<br />name: TypeError<br />message: Statement on line 1: Type mismatch (usually non-object value supplied where object required)<br />Backtrace:<br />  Line 1 of inline#3 script in ***<br />    function(){ jQuery("#list").jqGrid({ url:&#39;example.php&#39;, datatype: &#39;xml&#39;, mtype: &#39;GET&#39;, colNames:[&#39;Inv No&#39;,&#39;Date&#39;, &#39;Amount&#39;,&#39;Tax&#39;,&#39;Total&#39;,&#39;Notes&#39;], colModel :[ {name:&#39;invid&#39;, index:&#39;invid&#39;, width:55}, {name:&#39;invdate&#39;, index:&#39;invdate&#39;, width:90}, {name:&#39;amount&#39;, index:&#39;amount&#39;, width:80, align:&#39;right&#39;}, {name:&#39;tax&#39;, index:&#39;tax&#39;, width:80, align:&#39;right&#39;}, {name:&#39;total&#39;, index:&#39;total&#39;, width:80, align:&#39;right&#39;}, {name:&#39;note&#39;, index:&#39;note&#39;, width:150, sortable:false} ], pager: jQuery(&#39;#pager&#39;), rowNum:10, rowList:[10,20,30], sortname: &#39;id&#39;, sortorder: "desc", viewrecords: true, imgpath: &#39;themes/basic/images&#39;, caption: &#39;My first grid&#39;  }); }<br />  ...  Line 19 of linked script ***/js/jquery-1.3.1.min.js<br />    function(){this.call(document,o)}<br />  ...  Line 12 of linked script ***/js/jquery-1.3.1.min.js<br />    function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H&#60;I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H&#60;I&#38;&#38;K.call(J,H,J)!==false;J=G[++H]){}}}return G}<br />  Line 19 of linked script ***/js/jquery-1.3.1.min.js<br />    function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}<br />  Line 19 of linked script ***/js/jquery-1.3.1.min.js<br />    function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()}<br />  ...<br />stacktrace: n/a; see &#39;opera:config#UserPrefs&#124;Exceptions Have Stacktrace&#39;<br />"<br />In Mozila all work fine.<br />Version of jqGrid: jqGrid-3.4.4<br /></span></div></pre>
<p><!--  jQuery(document).ready(function(){ jQuery("#list").jqGrid({ url:&#38;#39;example.php&#38;#39;, datatype: &#38;#39;xml&#38;#39;, mtype: &#38;#39;GET&#38;#39;, colNames:[&#38;#39;Inv No&#38;#39;,&#38;#39;Date&#38;#39;, &#38;#39;Amount&#38;#39;,&#38;#39;Tax&#38;#39;,&#38;#39;Total&#38;#39;,&#38;#39;Notes&#38;#39;], colModel :[ {name:&#38;#39;invid&#38;#39;, index:&#38;#39;invid&#38;#39;, width:55}, {name:&#38;#39;invdate&#38;#39;, index:&#38;#39;invdate&#38;#39;, width:90}, {name:&#38;#39;amount&#38;#39;, index:&#38;#39;amount&#38;#39;, width:80, align:&#38;#39;right&#38;#39;}, {name:&#38;#39;tax&#38;#39;, index:&#38;#39;tax&#38;#39;, width:80, align:&#38;#39;right&#38;#39;}, {name:&#38;#39;total&#38;#39;, index:&#38;#39;total&#38;#39;, width:80, align:&#38;#39;right&#38;#39;}, {name:&#38;#39;note&#38;#39;, index:&#38;#39;note&#38;#39;, width:150, sortable:false} ], pager: jQuery(&#38;#39;#pager&#38;#39;), rowNum:10, rowList:[10,20,30], sortname: &#38;#39;id&#38;#39;, sortorder: "desc", viewrecords: true, imgpath: &#38;#39;themes/basic/images&#38;#39;, caption: &#38;#39;My first grid&#38;#39;  }); }); // --></p>
]]></description>
        	        	<pubDate>Tue, 26 May 2009 06:08:52 +0300</pubDate>
        </item>
</channel>
</rss>