<?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 data not shown in IE6</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/grid-data-not-shown-in-ie6</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-data-not-shown-in-ie6/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Grid data not shown in IE6</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/grid-data-not-shown-in-ie6#p3381</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/grid-data-not-shown-in-ie6#p3381</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>The alternative in this way is to use xmlstring.</p>
<p>Read the docs</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 01 Dec 2008 05:41:11 +0200</pubDate>
        </item>
        <item>
        	<title>invincible_virus on Grid data not shown in IE6</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/grid-data-not-shown-in-ie6#p3378</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/grid-data-not-shown-in-ie6#p3378</guid>
        	        	<description><![CDATA[<p>Thanks Tony,</p>
<p>I saw those posts, where people are using web-server and someone suggested them to add &#39;text/xml&#39; as content type in response.</p>
<p>But, I thought that it should not be applicable for me as I am using a local file.</p>
<p>can we call it a bug or limitation?</p>
<p>Anyways, thanks for making such a useful plug-in. I really appreciate your effort.</p>
<p>Regards,</p>
<p>Saurabh</p>
]]></description>
        	        	<pubDate>Mon, 01 Dec 2008 04:57:48 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Grid data not shown in IE6</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/grid-data-not-shown-in-ie6#p3376</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/grid-data-not-shown-in-ie6#p3376</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>If you do this as local file, this will not work in IE. Also there are a lot</p>
<p>of messages regarding this in jquery google grup.</p>
<p>To work this in IE you should use web server.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 01 Dec 2008 03:32:56 +0200</pubDate>
        </item>
        <item>
        	<title>invincible_virus on Grid data not shown in IE6</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/grid-data-not-shown-in-ie6#p3370</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/grid-data-not-shown-in-ie6#p3370</guid>
        	        	<description><![CDATA[<p>Hi,</p>
<p>I have prepared an xml grid. It works pretty fine in FF2 but no grid data is shown in IE6.</p>
<p>Here the code snippet -</p>
<p>$("#ModifyEUGTable").jqGrid({<br />&#160;&#160;&#160; datatype: &#39;xml&#39;,<br />&#160;&#160;&#160; url : &#39;eug_sample.xml&#39;,<br />&#160;&#160;&#160; editurl: "server.php",<br />&#160;&#160;&#160; colNames:[&#39;Destination Customer ID&#39;,&#39;Destination Domain ID&#39;, &#39;Destination EUG&#39;, &#39;Relation Type&#39;, &#39;Inter-EUG SSAR auto-generation&#39;],<br />&#160;&#160;&#160; colModel :[ <br />&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; {name:&#39;customerId&#39;, index:&#39;customerId&#39;, width:160, xmlmap:&#39;customerId&#39;}, <br />&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; {name:&#39;domainId&#39;, index:&#39;domainId&#39;, width:160, xmlmap:&#39;domainId&#39;}, <br />&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; {name:&#39;destinationEug&#39;, index:&#39;destinationEug&#39;, width:130, xmlmap:&#39;destinationEug&#39;, editable:true, editrules:{required:true}}, <br />&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; {name:&#39;relationType&#39;, index:&#39;relationType&#39;, width:100, xmlmap:&#39;relationType&#39;, editable:true, edittype:&#39;select&#39;, editoptions: { value: "T:Transmit Only; R:Receive Only; B:Both" } }, <br />&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; {name:&#39;ssar&#39;, index:&#39;ssar&#39;, width:220, sortable:false, xmlmap:&#39;ssar&#39;, editable:true, edittype:&#39;select&#39;, editoptions: { value: "Disable:Disable; Enable:Enable"} }],<br />&#160;&#160;&#160; rowNum:10,<br />&#160;&#160;&#160; rowList:[10,20,30],<br />&#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160; imgpath: &#39;../../plugins/jqGrid/themes/basic/images&#39;,<br />&#160;&#160;&#160; loadonce: true,<br />&#160;&#160;&#160; caption: &#39;Modify Inter EUG Relations&#39;,<br />&#160;&#160;&#160; toolbar: [true,&#39;top&#39;],<br />&#160;&#160;&#160; onSelectRow: function(id){<br />&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; if(id &#38;&#38; id!==lastSel){ <br />&#160;&#160;&#160; &#160;&#160;&#160; jQuery(&#39;#ModifyEUGTable&#39;).restoreRow(lastSel); <br />&#160;&#160;&#160; &#160;&#160;&#160; lastSel=id; <br />&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; jQuery(&#39;#ModifyEUGTable&#39;).editRow(id, true); <br />&#160;&#160;&#160; },<br />&#160;&#160;&#160; xmlReader: { <br />&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; root:"rows", <br />&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; row:"row", <br />&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; repeatitems:false, <br />&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; page:"EUGRelations&#62;currentpage", <br />&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; total:"EUGRelations&#62;totalpages", <br />&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; records:"EUGRelations&#62;totalrecords",<br />&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; id:"asin"&#160;&#160;&#160; }<br />&#160; });</p>
</p>
<p>XML file -</p>
<p>&#60;?xml version=&#39;1.0&#39; encoding=&#39;utf-8&#39;?&#62;<br />&#60;EUGRelations&#62;<br />&#160;&#160;&#160; &#60;currentpage&#62;1&#60;/currentpage&#62;<br />&#160;&#160;&#160; &#60;totalpages&#62;10&#60;/totalpages&#62;<br />&#160;&#160;&#160; &#60;totalrecords&#62;20&#60;/totalrecords&#62;<br />&#160;&#160;&#160; &#60;rows&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;row&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;customerId&#62;Customer001&#60;/customerId&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;domainId&#62;2&#60;/domainId&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;destinationEug&#62;EUG101&#60;/destinationEug&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;relationType&#62;T&#60;/relationType&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;ssar&#62;Disable&#60;/ssar&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;asin&#62;10101&#60;/asin&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;/row&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;row&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;customerId&#62;Customer001&#60;/customerId&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;domainId&#62;2&#60;/domainId&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;destinationEug&#62;EUG102&#60;/destinationEug&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;relationType&#62;T&#60;/relationType&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;ssar&#62;Disable&#60;/ssar&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;asin&#62;10102&#60;/asin&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;/row&#62;<br />&#160;&#160;&#160; &#60;/rows&#62;<br />&#60;/EUGRelations&#62;</p>
<p>can anyone help me find out why it doen&#39;t work in IE.</p>
<p>Thanks,</p>
<p>Saurabh</p></p>
]]></description>
        	        	<pubDate>Mon, 01 Dec 2008 02:46:10 +0200</pubDate>
        </item>
</channel>
</rss>