<?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: $.jgrid.formatter is undefined error</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/jgridformatter-is-undefined-error</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/jgridformatter-is-undefined-error/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>Alex DeLarge on $.jgrid.formatter is undefined error</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jgridformatter-is-undefined-error#p12174</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jgridformatter-is-undefined-error#p12174</guid>
        	        	<description><![CDATA[<p>I had the same issue, it was because I wasn&#39;t including the locale script.</p>
<p>&#160; &#60;script src="/Scripts/js/il8n/grid.locale-en.js" type="text/javascript"&#62;&#60;/script&#62;</p>
]]></description>
        	        	<pubDate>Thu, 19 Nov 2009 05:44:17 +0200</pubDate>
        </item>
        <item>
        	<title>tony on $.jgrid.formatter is undefined error</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jgridformatter-is-undefined-error#p10589</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jgridformatter-is-undefined-error#p10589</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>I think you will need to read this</p>
<p><a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:how_to_install" rel="nofollow" target="_blank"><a href="http://www.trirand.com/jqgridw" rel="nofollow">http://www.trirand.com/jqgridw</a>.....to_install</a></p>
<p>carfully. Please do not mix 3.4 with 3.5 installation</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Fri, 09 Oct 2009 04:09:02 +0300</pubDate>
        </item>
        <item>
        	<title>Tevin on $.jgrid.formatter is undefined error</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jgridformatter-is-undefined-error#p10557</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jgridformatter-is-undefined-error#p10557</guid>
        	        	<description><![CDATA[<p>I downloaded the latest version of jqGrid (3.5.3), including all of the options. However, when I try to use it, I get the data back but it is not being formatted correctly (read "at all"). Firebug is giving me the error "$.jgrid.formatter is undefined" in the jQuery.jqGrid.min script. My code looks like this:</p>
<p><input type='button' class='sfcodeselect' name='sfselectit2083' value='Select Code' data-codeid='sfcode2083' /></p>
<div class='sfcode' id='sfcode2083'>
<p>&#60;script type="text/javascript"&#62;</p>
<p><span> </span>jQuery(document).ready(function() {</p>
<p><span> </span>jQuery("#grid").jqGrid({</p>
<p><span> </span>jsonReader: {</p>
<p><span> </span>root: "Rows",</p>
<p><span> </span>page: "Page",</p>
<p><span> </span>total: "Total",</p>
<p><span> </span>records: "Records",</p>
<p><span> </span>repeatitems: false,</p>
<p><span> </span>userdata: "UserData",</p>
<p><span> </span>id: "Id"</p>
<p><span> </span>},</p>
<p><span> </span>url: &#39;/Test/TestGridData/&#39;,</p>
<p><span> </span>datatype: &#39;json&#39;,</p>
<p><span> </span>mtype: &#39;GET&#39;,</p>
<p><span> </span>colNames: [&#39;Id&#39;, &#39;Name&#39;, &#39;Internal ID&#39;],</p>
<p><span> </span>colModel: [</p>
<p><span> </span>{ name: &#39;Id&#39;, index: &#39;Id&#39; },</p>
<p><span> </span>{ name: &#39;Name&#39;, index: &#39;Name&#39; },</p>
<p><span> </span>{ name: &#39;InternalId&#39;, index: &#39;InternalId&#39;}],</p>
<p><span> </span>pager: jQuery(&#39;#pager&#39;),</p>
<p><span> </span>rowNum: 10,</p>
<p><span> </span>rowList: [5, 10, 20, 50],</p>
<p><span> </span>sortname: &#39;Id&#39;,</p>
<p><span> </span>sortorder: "desc",</p>
<p><span> </span>viewrecords: true,</p>
<p><span> </span>imgpath: &#39;/scripts/themes/coffee/images&#39;,</p>
<p><span> </span>caption: &#39;My first grid&#39;</p>
<p><span> </span>});</p>
<p><span> </span>});&#160;</p>
<p><span> </span>&#60;/script&#62;</p>
</div>
<p>The jqGrid script is in the /Scripts directory, as is a Themes folder, and I have the following links in the &#60;head&#62; tag, above the above code:</p>
<p><input type='button' class='sfcodeselect' name='sfselectit3944' value='Select Code' data-codeid='sfcode3944' /></p>
<div class='sfcode' id='sfcode3944'>
<p>&#160;&#60;link rel="stylesheet" type="text/css" href="/scripts/themes/coffee/grid.css" title="coffee" media="screen" /&#62;</p>
<p>&#160;&#160; &#160;&#60;script src="/Scripts/jquery-1.3.2.min.js" type="text/javascript"&#62;&#60;/script&#62;</p>
<p>&#160;&#160; &#160;&#60;script src="/Scripts/jquery.jqGrid.min.js" type="text/javascript"&#62;&#60;/script&#62;</p>
</div>
<p>All of the files referred to are there. Does anyone have any ideas?</p>
<p>Thanks.</p></p>
]]></description>
        	        	<pubDate>Thu, 08 Oct 2009 11:11:27 +0300</pubDate>
        </item>
</channel>
</rss>