<?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: Does not work in IE</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/does-not-work-in-ie</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/does-not-work-in-ie/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Does not work in IE</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/does-not-work-in-ie#p1214</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/does-not-work-in-ie#p1214</guid>
        	        	<description><![CDATA[<p>It is a IE problem which I should correct into the loader.</p>
<p>Thank you</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Wed, 23 Jul 2008 07:32:52 +0300</pubDate>
        </item>
        <item>
        	<title>schenz on Does not work in IE</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/does-not-work-in-ie#p1213</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/does-not-work-in-ie#p1213</guid>
        	        	<description><![CDATA[<p>Ok, that seemed to work.</p>
<p>Should I just leave it like that, or was this a testing step?</p>
]]></description>
        	        	<pubDate>Wed, 23 Jul 2008 07:24:50 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Does not work in IE</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/does-not-work-in-ie#p1211</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/does-not-work-in-ie#p1211</guid>
        	        	<description><![CDATA[<p>Could you please load only base.jqgrid.js replacing</p>
<p>jquery.jqGrid.js i.e.</p>
<p>&#60;script src="js/grid.base.js" type="text/javascript"&#62;&#60;/script&#62;</p>
]]></description>
        	        	<pubDate>Wed, 23 Jul 2008 06:49:04 +0300</pubDate>
        </item>
        <item>
        	<title>schenz on Does not work in IE</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/does-not-work-in-ie#p1199</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/does-not-work-in-ie#p1199</guid>
        	        	<description><![CDATA[<p>Ok, I&#39;ve changed the Javascript to:</p>
<p>&#60;script type="text/javascript"&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // We use a document ready jquery function.<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; jQuery(document).ready(function(){<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; jQuery("#list2").jqGrid({<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // the url parameter tells from where to get the data from server adding ?nd=&#39;+new Date().getTime() prevent IE caching<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; url:&#39;DisplayResults.php?nd=&#39;+new Date().getTime(),<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // datatype parameter defines the format of data returned from the server in this case we use a JSON data<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; datatype: "json",<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // colNames parameter is a array in which we describe the names in the columns. This is the text that apper in the head of the grid.<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; colNames:[&#39;First Name&#39;, &#39;Last Name&#39;, &#39;Attending&#39;,&#39;Meal Choice&#39;,&#39;Guest First Name&#39;, &#39;Guest Last Name&#39;, &#39;Guest Attending&#39;,&#39;Guest Meal Choice&#39;,&#39;Last Updated&#39;],<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // colModel array describes the model of the column. <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // name is the name of the column,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // index is the name passed to the server to sort data<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // note that we can pass here nubers too.<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // width is the width of the column<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // align is the align of the column (default is left)<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // sortable defines if this column can be sorted (default true)<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; colModel:<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; [<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;fname1&#39;,index:&#39;fname1&#39;, width:85},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;lname1&#39;,index:&#39;lname1&#39;, width:95},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;attend1&#39;,index:&#39;attend1&#39;, width:70},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;meal1&#39;,index:&#39;meal1&#39;, width:210},&#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;fname2&#39;,index:&#39;fname2&#39;, width:120},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;lname2&#39;,index:&#39;lname2&#39;, width:120},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;attend2&#39;,index:&#39;attend2&#39;, width:110},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;meal2&#39;,index:&#39;meal2&#39;, width:210},&#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;update&#39;,index:&#39;`update`&#39;, width:150}<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; ],<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // pager parameter define that we want to use a pager bar in this case this must be a valid html element.<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // note that the pager can have a position where you want<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; pager: jQuery(&#39;#pager2&#39;),<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // rowNum parameter describes how many records we want to view in the grid. We use this in example.php to return the needed data.<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; rowNum:50,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // rowList parameter construct a select box element in the pager in wich we can change the number of the visible rows<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; rowList:[50,100,150],<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // path to mage location needed for the grid<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; imgpath: &#39;themes/coffee/images&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // sortname sets the initial sorting column. Can be a name or number. this parameter is added to the url<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; sortname: &#39;lname1&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; //viewrecords defines the view the total records from the query in the pager bar. The related tag is: records in xml or json definitions.<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; //sets the sorting order. Default is asc. This parameter is added to the url<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; sortorder: "desc",<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; caption: "RSVP Information",<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; height:500<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; });<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; });<br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;/script&#62;</p>
</p>
<p>Now in IE I get the error: "Object doesn&#39;t support this property of method" on line 27 Character 5, which is the following line:</p>
<p>jQuery("#list2").jqGrid({</p>
<p>Any idea what this error is?</p>
]]></description>
        	        	<pubDate>Tue, 22 Jul 2008 23:46:27 +0300</pubDate>
        </item>
        <item>
        	<title>canvas.wang on Does not work in IE</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/does-not-work-in-ie#p1196</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/does-not-work-in-ie#p1196</guid>
        	        	<description><![CDATA[<p>I guess it&#39;s a javascript format problem. IE is more picky at javascript format.</p>
<p>Instead of using:</p>
<p>jQuery(document).ready<br />(<br />&#160;&#160;&#160; function()<br />&#160;&#160;&#160; {<br />&#160;&#160;&#160; &#160;&#160;&#160; jQuery(&#8221;#list2&#8243;).jqGrid<br />&#160;&#160;&#160; &#160;&#160;&#160; (<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; url: &#8230;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; datatype: &#8230;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#8230;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }<br />&#160;&#160;&#160; &#160;&#160;&#160; )<br />&#160;&#160;&#160; }<br />)</p>
<p>Please try: </p>
<p>jQuery(document).ready(&#160;&#160;&#160; function(){<br />&#160;&#160;&#160; jQuery(&#8221;#list2&#8243;).jqGrid({<br />&#160;&#160;&#160; &#160;&#160;&#160; url: &#8230;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; datatype: &#8230;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8230;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; })<br />})</p>
]]></description>
        	        	<pubDate>Tue, 22 Jul 2008 16:31:36 +0300</pubDate>
        </item>
        <item>
        	<title>schenz on Does not work in IE</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/does-not-work-in-ie#p1192</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/does-not-work-in-ie#p1192</guid>
        	        	<description><![CDATA[<p>I need help getting this page working in IE (all versions).&#160; Works fine in Firefox.</p>
</p>
<p><a href="http://schenzcustomdesigns.com/RAC/RSVP/DisplayResults.html" rel="nofollow" target="_blank"><a href="http://schenzcustomdesigns.com" rel="nofollow">http://schenzcustomdesigns.com</a>.....sults.html</a></p>
]]></description>
        	        	<pubDate>Tue, 22 Jul 2008 15:24:11 +0300</pubDate>
        </item>
</channel>
</rss>