<?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: Navigator 'add' , 'edit' button seem working incorrectly</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/navigator-add-edit-button-seem-working-incorrectly</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/navigator-add-edit-button-seem-working-incorrectly/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>i-robot on Navigator 'add' , 'edit' button seem working incorrectly</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/navigator-add-edit-button-seem-working-incorrectly#p13632</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/navigator-add-edit-button-seem-working-incorrectly#p13632</guid>
        	        	<description><![CDATA[<p>miss&#160; editable:true in model&#160; {name:&#39;id&#39;,index:&#39;id&#39;, width:100, editable:true}</p>
]]></description>
        	        	<pubDate>Thu, 07 Jan 2010 10:15:35 +0200</pubDate>
        </item>
        <item>
        	<title>i-robot on Navigator 'add' , 'edit' button seem working incorrectly</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/navigator-add-edit-button-seem-working-incorrectly#p13629</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/navigator-add-edit-button-seem-working-incorrectly#p13629</guid>
        	        	<description><![CDATA[<p>afte click add button on the navigator: the add dialog shows, but shows nothing. </p>
<p>the same thing happened when i click edit button.</p>
<p>Any idea?<img class="spSmiley" style="margin:0" title="Confused" src="/blog/wp-content/forum-smileys/sf-confused.gif" alt="Confused" /></p>
<p>my code:</p>
<p>&#60;html&#62;<br />&#60;head&#62;<br />&#60;!-- The jQuery UI theme that will be used by the grid --&#62;&#160;&#160; <br />&#60;link rel="stylesheet" type="text/css" media="screen" href="/Test/styles/jqUI/redmond/jquery-ui-1.7.2.custom.css" /&#62;<br />&#60;!-- The jQuery UI theme extension jqGrid needs --&#62;&#160;&#160;&#160; <br />&#60;link rel="stylesheet" type="text/css" media="screen" href="/Test/styles/jqGrid/ui.jqgrid.css" /&#62;</p>
<p>&#60;script type="text/javascript" src="/Test/scripts/jQuery/jquery-1.3.2.min.js"&#62;&#60;/script&#62;<br />&#60;script type="text/javascript" src="/Test/scripts/jqUI/jquery-ui-1.7.2.custom.min.js"&#62;&#60;/script&#62;<br />&#60;script type="text/javascript" src="/Test/scripts/jqGrid/i18n/grid.locale-en.js"&#62;&#60;/script&#62;<br />&#60;script type="text/javascript" src="/Test/scripts/jqGrid/jquery.jqGrid.min.js"&#62;&#60;/script&#62;<br />&#60;script&#62;<br />&#160;&#160;&#160; jQuery.jgrid.no_legacy_api = true;<br />&#160;&#160;&#160; $(document).ready(function(){<br />&#160;&#160;&#160; &#160;var lastsel;<br />&#160;&#160;&#160;&#160; jQuery("#list2").jqGrid({<br />&#160;&#160;&#160;&#160; &#160;<a href="&#39;/Test/LoadData.do&#39;" target="_blank">url:&#39;/Test/LoadData.do&#39;</a>,<br />&#160;&#160;&#160;datatype: "json",<br />&#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;colModel:[<br />&#160;&#160;&#160;&#160; &#160;&#160;{name:&#39;id&#39;,index:&#39;id&#39;, width:100},<br />&#160;&#160;&#160;&#160; &#160;&#160;{name:&#39;invdate&#39;,index:&#39;invdate&#39;, width:90},<br />&#160;&#160;&#160;&#160; &#160;&#160;{name:&#39;name&#39;,index:&#39;name&#39;, width:100},<br />&#160;&#160;&#160;&#160; &#160;&#160;{name:&#39;amount&#39;,index:&#39;amount&#39;, width:80, align:"right"},<br />&#160;&#160;&#160;&#160; &#160;&#160;{name:&#39;tax&#39;,index:&#39;tax&#39;, width:80, align:"right"},&#160;&#160;<br />&#160;&#160;&#160;&#160; &#160;&#160;{name:&#39;total&#39;,index:&#39;total&#39;, width:80,align:"right"},&#160;&#160;<br />&#160;&#160;&#160;&#160; &#160;&#160;{name:&#39;note&#39;,index:&#39;note&#39;, width:150, sortable:false}&#160;&#160;<br />&#160;&#160;&#160;&#160; &#160;],<br />&#160;&#160;&#160;&#160; &#160;rowNum:10,<br />&#160;&#160;&#160;&#160; &#160;rowList:[10,20,30],<br />&#160;&#160;&#160;&#160; &#160;pager: &#39;#pager2&#39;,<br />&#160;&#160;&#160;&#160; &#160;sortname: &#39;id&#39;,<br />&#160;&#160;&#160;&#160;&#160; sortorder: "desc",<br />&#160;&#160;&#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160;&#160;&#160; jsonReader: {&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; root: "dataRows",&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; repeatitems : false&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160; },</p>
<p>&#160;&#160;&#160;&#160;&#160; //altRows:true,<br />&#160;&#160;&#160;&#160;&#160; caption:"JSON Example"<br />&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;}).jqGrid(&#39;navGrid&#39;,&#39;#pager2&#39;,{edit:true,add:true,del:true});<br />&#160;&#160;&#160; });<br />&#160; <br />&#60;/script&#62;<br />&#60;/head&#62;<br />&#60;body&#62;<br />&#60;table id="list2"&#62;&#60;/table&#62;<br />&#60;div id="pager2"&#62;&#60;/div&#62;<br />&#60;a href="javascript:alert(document.getElementById(&#39;list2&#39;).innerHTML);"/&#62;ok&#60;/a&#62;<br />&#60;/body&#62;<br />&#60;/html&#62;</p>
]]></description>
        	        	<pubDate>Thu, 07 Jan 2010 10:10:22 +0200</pubDate>
        </item>
</channel>
</rss>