<?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-1</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-1/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tadams 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-1#p22563</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/uncaught-exception-jqgrid-no-such-method-navgrid-1#p22563</guid>
        	        	<description><![CDATA[<p>Hi Tony,</p>
<p>yes you were right, the corresponding formedit module was missing, stupid me.</p>
<p>Thanks a lot.</p>
</p>
<p>c. Thomas</p></p>
]]></description>
        	        	<pubDate>Mon, 28 Mar 2011 10:02:02 +0300</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-1#p22556</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/uncaught-exception-jqgrid-no-such-method-navgrid-1#p22556</guid>
        	        	<description><![CDATA[<p>Hello Thomas,</p>
<p>such error has typically one from two reasons: 1) you downloaded jqGrid <strong>without including "form editing"</strong> module (see <a href="/blog/?page_id=6" target="_blank">jqGrid download page</a>) 2) you use wrong order of JavaScript files inserted in the page. To verify the first one probelm you can open jquery.jqGrid.min.js file in the text editor and search in the comment at the beginning of the file for <strong>grid.formedit.js</strong> after the text "<strong>Modules:</strong>". In all cases the error is probably not in the part which you posted, but in for example the HTML code which shown the order of files included.</p>
<p>Best regards<br />Oleg</p>
]]></description>
        	        	<pubDate>Sat, 26 Mar 2011 12:25:44 +0200</pubDate>
        </item>
        <item>
        	<title>tadams 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-1#p22555</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/uncaught-exception-jqgrid-no-such-method-navgrid-1#p22555</guid>
        	        	<description><![CDATA[<p>I get an uncaught exception: jqGrid - No such method: navGrid, when trying to enable the search button</p>
<p>on the navigation pager. Here my code :</p>
<p><input type='button' class='sfcodeselect' name='sfselectit5522' value='Select Code' data-codeid='sfcode5522' /></p>
<div class='sfcode' id='sfcode5522'>var deleteLink =&#34;/blog/delete/&#34;;<br />var editLink =&#34;/blog/edit/&#34;;<br />jQuery.extend(jQuery.jgrid.defaults, { altRows:true, hoverrows: false });</p>
<p>function OnGridLoadComplete () {<br />&#160;&#160; &#160;jQuery(&#34;.editLink&#34;).button({<br />&#160;&#160; &#160;&#160;&#160; &#160;icons : {primary : &#39;ui-icon-pencil&#39;},<br />&#160;&#160; &#160;&#160;&#160; &#160;text : false<br />&#160;&#160; &#160;});</p>
<p>&#160;&#160;&#160; &#160;jQuery(&#34;.deleteLink&#34;).button({<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;icons : {primary : &#39;ui-icon-trash&#39;},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;text : false<br />&#160;&#160;&#160; &#160;});</p>
<p>&#160;&#160;&#160; &#160;jQuery(&#34;.editLink&#34;).click(function (){<br />&#160; &#160;&#160; &#160;&#160;&#160; &#160;var id = jQuery(this).attr(&#34;id&#34;).split(&#34;_&#34;)[1];<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;document.location.href= editLink + id + &#34;.do&#34;;<br />&#160;&#160;&#160; &#160;});</p>
<p>&#160;&#160;&#160; &#160;jQuery(&#34;.deleteLink&#34;).click(function (){<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;var id = jQuery(this).attr(&#34;id&#34;).split(&#34;_&#34;)[1];<br />&#160; &#160;&#160; &#160;&#160;&#160; &#160;document.location.href= editLink + id + &#34;.do&#34;;<br />&#160;&#160;&#160; &#160;});<br />}</p>
<p>jQuery(document).ready(function(){<br />&#160;&#160; &#160;jQuery(&#34;#blog_list&#34;).jqGrid({url : &#39;/blog/page/ajax/get.do&#39;, datatype : &#39;json&#39;, mtype : &#39;get&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;colNames : [&#39;Id&#39;, &#39;Comment&#39;, &#39;Date&#39;, &#39;User&#39;, &#39;Status&#39;, &#39;Edit&#39;, &#39;Delete&#39;], <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;colModel : [{name : &#39;id&#39;, index : &#39;id&#39;, width : 30, align : &#39;right&#39;, sortable : true, resizable : true, search : true}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name : &#39;text&#39;, index : &#39;text&#39;, width : 300, align : &#39;left&#39;, sortable : true, resizable : true, search : true}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name : &#39;date&#39;, index : &#39;date&#39;, width : 80, align : &#39;right&#39;, sortable : true, resizable : true, search : true}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name : &#39;user&#39;, index : &#39;user&#39;, width : 150, align : &#39;left&#39;, sortable : true, resizable : true, search : true},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name : &#39;status&#39;, index : &#39;status&#39;, width : 150, align : &#39;left&#39;, sortable : true, resizable : true, search : true},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name : &#39;editLink&#39;, index : &#39;editLink&#39;, width : 80, align : &#39;center&#39;, sortable : true, resizable : true, search : false}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name : &#39;deleteLink&#39;, index : &#39;deleteLink&#39;, width : 80, align : &#39;center&#39;, sortable : true, resizable : true, search : false}<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;pager : &#39;#blog_pager&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;rowNum : 10, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;rowList : [10, 20, 30], <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;sortname : &#39;id&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;sortorder : &#39;asc&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;viewrecords : true, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;caption : &#39;Blog list&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;loadComplete : OnGridLoadComplete}).jqGrid(&#39;navGrid&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#39;#blog_pager&#39;,{edit:true,add:true,del:true,search:true},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{}, // use default settings for edit<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{}, // use default settings for add<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{}, // delete instead that del:false we need this<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{multipleSearch : true}, // enable the advanced searching<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{closeOnEscape:true} // allow the view dialog to be closed when user press ESC key<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;);<br />&#160;&#160; &#160;jQuery(&#34;#blog_list&#34;).jqGrid(&#34;filterToolbar&#34;, {&#34;autosearch&#34;:true,&#34;stringResult&#34;:true});<br />});</p>
</div>
<p>Whatever i do, i always end with the error that the navGrid methods does not exist, also:</p>
<p>jQuery("#blog_List").jgGrid(....).navGrid(....);</p>
<p>ends up in the same error.</p>
<p>Used browser : Firefox version : 3.6.16, Opera 11.01, Safari 5.0.3</p>
<p>In Opera i got following error console output:</p>
<div style="font-size:small;">
<p>JavaScript - <a href="http://localhost:8080/blog/list.do" rel="nofollow" target="_blank">http://localhost:8080/blog/list.do</a></p>
<p>throw&#34;jqGrid - No such method: &#34;+f;</p>
<p>called from line 32, column 5 in &#60;anonymous function&#62;() in <a href="http://localhost:8080/blog/list.do" rel="nofollow" target="_blank">http://localhost:8080/blog/list.do</a>:</p>
<p>a.call(s,c);</p>
<p>called via Function.prototype.call() from line 33, column 235 in &#60;anonymous function: L&#62;() in <a href="http://localhost:8080/common/js/jquery-1.4.2.min.js" rel="nofollow" target="_blank">http://localhost:8080/common/js/jquery-1.4.2.min.js</a>:</p>
<p>c.ready()</p>
</div>
<p>Any ideas what#s maybe wrong here?</p>
</p>
<p>C. Thomas</p>
]]></description>
        	        	<pubDate>Sat, 26 Mar 2011 02:56:08 +0200</pubDate>
        </item>
</channel>
</rss>