<?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: uncaught exception: jqGrid - No such method: navGrid</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/uncaught-exception-jqgrid-no-such-method-navgrid</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/uncaught-exception-jqgrid-no-such-method-navgrid/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>pirzada on uncaught exception: jqGrid - No such method: navGrid</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/uncaught-exception-jqgrid-no-such-method-navgrid#p21338</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/uncaught-exception-jqgrid-no-such-method-navgrid#p21338</guid>
        	        	<description><![CDATA[<p>Thanks alot</p>
]]></description>
        	        	<pubDate>Sat, 18 Dec 2010 18:40:21 +0200</pubDate>
        </item>
        <item>
        	<title>OlegK on uncaught exception: jqGrid - No such method: navGrid</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/uncaught-exception-jqgrid-no-such-method-navgrid#p21337</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/uncaught-exception-jqgrid-no-such-method-navgrid#p21337</guid>
        	        	<description><![CDATA[<p>You can find the answre <a href="http://stackoverflow.com/questions/4477926/uncaught-exception-jqgrid-no-such-method-navgrid/4478136#4478136" target="_blank">here</a>.</p>
<p>Best regards<br /> Oleg</p>
]]></description>
        	        	<pubDate>Sat, 18 Dec 2010 16:01:04 +0200</pubDate>
        </item>
        <item>
        	<title>pirzada on uncaught exception: jqGrid - No such method: navGrid</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/uncaught-exception-jqgrid-no-such-method-navgrid#p21336</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/uncaught-exception-jqgrid-no-such-method-navgrid#p21336</guid>
        	        	<description><![CDATA[<p>jqGrid 3.8.1 was working fine than I updated jqGrid 3.8.2. The code started generating error.<br /><strong>Error is</strong> : uncaught exception: jqGrid - No such method: navGrid. Below is my code.</p>
<p><strong>Note:</strong> <em>If I remove below line than Grid is working fine</em>. Why is that?</p>
<p><input type='button' class='sfcodeselect' name='sfselectit2024' value='Select Code' data-codeid='sfcode2024' /></p>
<div class='sfcode' id='sfcode2024'>jQuery(&#34;#lists55&#34;).jqGrid(&#39;navGrid&#39;, &#39;#pagers55&#39;, { edit: false, add: false, del: false });</div>
<p>Using it in ASP.NET MVC 3 Razor.<br />//My Code<br />-------------------------------------------------------------------------------------------------------------</p>
<p><input type='button' class='sfcodeselect' name='sfselectit6852' value='Select Code' data-codeid='sfcode6852' /></p>
<div class='sfcode' id='sfcode6852'>&#60;link href=&#34;@Url.Content(&#34;~/Content/themes/images/jquery-ui-1.8.7.custom.css&#34;)&#34; rel=&#34;stylesheet&#34; type=&#34;text/css&#34; /&#62;<br />&#60;link href=&#34;@Url.Content(&#34;~/Content/themes/ui.jqgrid.css&#34;)&#34; rel=&#34;stylesheet&#34; type=&#34;text/css&#34; /&#62;<br />&#60;script src=&#34;@Url.Content(&#34;~/Scripts/jquery-1.4.4.min.js&#34;)&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62;<br />&#60;script src=&#34;@Url.Content(&#34;~/Scripts/js/jquery-ui-1.8.7.custom.min.js&#34;)&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62;<br />&#60;script src=&#34;@Url.Content(&#34;~/Scripts/js/grid.locale-en.js&#34;)&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62;<br />&#60;script src=&#34;@Url.Content(&#34;~/Scripts/js/jquery.jqGrid.min.js&#34;)&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62;</p>
<p>jQuery().ready(function () {<br />&#160;&#160;&#160; jQuery(&#34;#lists55&#34;).jqGrid({<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; data: mydata1,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; datatype: &#34;local&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; colNames: [&#39;Inv No&#39;, &#39;Date&#39;, &#39;Client&#39;, &#39;Amount&#39;, &#39;Tax&#39;, &#39;Total&#39;, &#39;Notes&#39;],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; colModel: [{ name: &#39;id&#39;, index: &#39;id&#39;, width: 55 },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;invdate&#39;, index: &#39;invdate&#39;, width: 90 },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;name&#39;, index: &#39;name asc, invdate&#39;, width: 100 },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;amount&#39;, index: &#39;amount&#39;, width: 80, align: &#34;right&#34;, formatter: &#39;number&#39; },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;tax&#39;, index: &#39;tax&#39;, width: 80, align: &#34;right&#34;, formatter: &#39;number&#39; },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;total&#39;, index: &#39;total&#39;, width: 80, align: &#34;right&#34;, formatter: &#39;number&#39; },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;note&#39;, index: &#39;note&#39;, width: 150, sortable: false }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowNum: 10,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowList: [10, 20, 30],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pager: &#39;#pagers55&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortname: &#39;id&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortorder: &#34;desc&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; caption: &#34;JSON Example&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; footerrow: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; userDataOnFooter: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; altRows: true<br />&#160;&#160;&#160; });<br />&#160;&#160;&#160; jQuery(&#34;#lists55&#34;).jqGrid(&#39;navGrid&#39;, &#39;#pagers55&#39;, { edit: false, add: false, del: false }); <br />});</p>
</div>
]]></description>
        	        	<pubDate>Sat, 18 Dec 2010 12:17:38 +0200</pubDate>
        </item>
</channel>
</rss>