<?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: Row id not being passed in inline edit</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/row-id-not-being-passed-in-inline-edit</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/row-id-not-being-passed-in-inline-edit/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>nwgeorge on Row id not being passed in inline edit</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/row-id-not-being-passed-in-inline-edit#p8269</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/row-id-not-being-passed-in-inline-edit#p8269</guid>
        	        	<description><![CDATA[<p>Just a follow up for those who might come up on the same issue. My site is Django based and I was having all sorts of problems with getting blank row ids.</p>
<p>One real resource on the jqgrid site is the demo code - I recommend it to anyone who gets stuck. I downloaded the 3.4.x version and worked back from there.</p>
<p>Whatever the issues was, it was not jqgrids fault. What fixed it was replacing all the js with the exact structure and files of the demo code. You still have to change the /js path in jquery.jqGrid.js tho.</p>
<p>I had originally installed 3.4.4 with the patch. Whether it was my setup, or something in the patch, but this code did not work with Django. If you have issues try the js file from the demo code.</p>
<p>I have not tried 3.5 code.</p>
<p>Happy coding 🙂</p>
</p>
<p>Nigel</p>
]]></description>
        	        	<pubDate>Wed, 05 Aug 2009 06:17:00 +0300</pubDate>
        </item>
        <item>
        	<title>nwgeorge on Row id not being passed in inline edit</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/row-id-not-being-passed-in-inline-edit#p8237</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/row-id-not-being-passed-in-inline-edit#p8237</guid>
        	        	<description><![CDATA[<p>Thanks for the reply Tony,</p>
<p>Can you please elaborate - I have used your own demo in my site to try and troubleshoot this - so I have the weird situation where I have code using local data (example 5) so as to not be server dependent - and it does not work.</p>
<p>It clearly works on your server, so I am obviously missing something - but I am not sure what.</p>
<p>Cheers,</p>
<p>Nigel</p>
]]></description>
        	        	<pubDate>Tue, 04 Aug 2009 02:52:10 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Row id not being passed in inline edit</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/row-id-not-being-passed-in-inline-edit#p8236</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/row-id-not-being-passed-in-inline-edit#p8236</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>If you do not have uniquie id rowid (or at least do not set it) these will not work.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 04 Aug 2009 02:31:13 +0300</pubDate>
        </item>
        <item>
        	<title>pctotalsantafe on Row id not being passed in inline edit</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/row-id-not-being-passed-in-inline-edit#p8206</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/row-id-not-being-passed-in-inline-edit#p8206</guid>
        	        	<description><![CDATA[<p>I have the same problem.</p>
<p>If you find the solution thank you the information.</p>
<p>My example:</p>
<p>onSelectRow: function(id){<br />&#160;&#160;&#160;&#160;&#160; if(id &#38;&#38; id!==lastsel){<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; jQuery(&#39;#list&#39;).restoreRow(lastsel);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; jQuery(&#39;#list&#39;).editRow(id,true);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; lastsel=id;<br />&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160; }</p>
<p>if I use the same grid with editGridRow () works perfectly</p>
]]></description>
        	        	<pubDate>Mon, 03 Aug 2009 11:54:24 +0300</pubDate>
        </item>
        <item>
        	<title>nwgeorge on Row id not being passed in inline edit</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/row-id-not-being-passed-in-inline-edit#p8200</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/row-id-not-being-passed-in-inline-edit#p8200</guid>
        	        	<description><![CDATA[<p>I am having trouble getting inline editing to work. I keep getting <span class="objectBox objectBox-exception">"ReferenceError: id is not defined" in Firebug and when I use this code:</span></p>
<p>onSelectRow: function(id){<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; alert(id);<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; if(id &#38;&#38; id!==lastsel2){<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; jQuery(&#39;#rowed5&#39;).restoreRow(lastsel2);<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; jQuery(&#39;#rowed5&#39;).editRow(id,true);<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; lastsel2=id;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }</p>
<p>the alert box is empty.</p>
<p>i have physically cut and pasted the demo code from example 5 of the inline grid editing demo (version 3.4.x) and it still does not work.</p>
<p>I have 3.4.4 with the patch installed.</p>
<p>i have searched these forums, but have not found a solution. My apologies if I have missed something, but I am not sure what is going on and need assistance.</p>
<p>Thanks in advance for your time.</p>
</p>
<p>Regards,</p>
<p>Nigel</p>
]]></description>
        	        	<pubDate>Mon, 03 Aug 2009 07:11:46 +0300</pubDate>
        </item>
</channel>
</rss>