<?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: Using Jgrid with Asp.Net MVC is throwing error.</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/using-jgrid-with-aspnet-mvc-is-throwing-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/bugs/using-jgrid-with-aspnet-mvc-is-throwing-error/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Using Jgrid with Asp.Net MVC is throwing error.</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/using-jgrid-with-aspnet-mvc-is-throwing-error#p3181</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/using-jgrid-with-aspnet-mvc-is-throwing-error#p3181</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>It seems that you do not have included the language file, by</p>
<p>example grid.locale-en.js. This file should be included before jqGrid.</p>
<p>Also refer to this:</p>
<p><a href="http://bartreyserhove.blogspot.com/2008/08/aspnet-mvc-and-jqgrid.html" rel="nofollow" target="_blank"><a href="http://bartreyserhove.blogspot" rel="nofollow">http://bartreyserhove.blogspot</a>.....qgrid.html</a></p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Fri, 21 Nov 2008 03:29:11 +0200</pubDate>
        </item>
        <item>
        	<title>atif on Using Jgrid with Asp.Net MVC is throwing error.</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/using-jgrid-with-aspnet-mvc-is-throwing-error#p3168</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/using-jgrid-with-aspnet-mvc-is-throwing-error#p3168</guid>
        	        	<description><![CDATA[<p>HI</p>
<p>I am using JQuery grid with Asp.net . I am having a problem I get this message when ever my grid gets load.</p>
<p>$.jgrid.default is null or not an object.</p>
<p>I am having "JsonResult" result returned from the controller I am also wrinting the code here.</p>
</p>
<p>$(&#39;#list&#39;).jqGrid({</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160;url: &#39;../../Home/getgriddata&#39;,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; datatype:&#39;json&#39;,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; mytype:&#39;get&#39;,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160;&#160;</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160;colNames:[&#39;Id&#39;,&#39;Name&#39;,&#39;Description&#39;],</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; colModel:[</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; {name:&#39;id&#39;,index:&#39;id&#39;,width:55,resizable:true},</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; {name:&#39;name&#39;,index:&#39;name&#39;,width:90,resizable:true},</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; {name:&#39;description&#39;,index:&#39;description&#39;,width:120,resizable:true}],</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&#160;</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; pager:$(&#39;#pager&#39;),</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; rownum:10,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; rowlist:[10,20,30],</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; sortname:&#39;id&#39;,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; sortorder:&#39;desc&#39;,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; viewrecords:true,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; multiselect: true,&#160;</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; multikey: "ctrlkey",</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; //imgpath:&#39;../../img/basic/images&#39;,</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; caption: &#39;mvc the hell&#39;</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;</p>
<p>&#160;&#160; &#160; &#160; &#160; &#160;});</p>
<p>If ang one knows the soultion please let me know.</p>
]]></description>
        	        	<pubDate>Thu, 20 Nov 2008 04:30:35 +0200</pubDate>
        </item>
</channel>
</rss>