<?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: Inline editting, saveRow</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/inline-editting-saverow</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/inline-editting-saverow/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>YamilBracho on Inline editting, saveRow</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/inline-editting-saverow#p2795</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/inline-editting-saverow#p2795</guid>
        	        	<description><![CDATA[<p>Please, add the beforeSubmit event as above and put the id getting the value from the row selected.</p>
<p>If this field is your PK, you know it will be empty if you are adding a new record, otherwise it shouble have the value from the selected row</p>
]]></description>
        	        	<pubDate>Wed, 29 Oct 2008 12:45:16 +0200</pubDate>
        </item>
        <item>
        	<title>nsorochan on Inline editting, saveRow</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/inline-editting-saverow#p2794</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/inline-editting-saverow#p2794</guid>
        	        	<description><![CDATA[<p>Receiving the parameter.</p>
<p>When I look at the actual http post, the id is in there.<br />
My method on my controller looks like this</p>
<p>public JsonResult EditClients(string address, string clientdescription, string clientname, string contactname, string contactnumber, string country, string id, string province)</p>
<p>Everything has a value except id, it is empty.</p>
<p>I got around though, in the</p>
]]></description>
        	        	<pubDate>Wed, 29 Oct 2008 12:16:23 +0200</pubDate>
        </item>
        <item>
        	<title>YamilBracho on Inline editting, saveRow</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/inline-editting-saverow#p2792</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/inline-editting-saverow#p2792</guid>
        	        	<description><![CDATA[<p>The problem is receiving the parameter or building response for jqGrid ?</p></p>
]]></description>
        	        	<pubDate>Wed, 29 Oct 2008 11:26:21 +0200</pubDate>
        </item>
        <item>
        	<title>nsorochan on Inline editting, saveRow</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/inline-editting-saverow#p2791</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/inline-editting-saverow#p2791</guid>
        	        	<description><![CDATA[<p>thanx,</p>
<p>Here is the really strange thing,  the id is in the post to the server.  When the request hits the controller method, the id is an empty string.</p>
<p>I have tried everything I could think of.  I appreciate the response, but I would really like to know what I am doing wrong.</p>
<p>Does my method need a certain return type?</p>
]]></description>
        	        	<pubDate>Wed, 29 Oct 2008 11:07:04 +0200</pubDate>
        </item>
        <item>
        	<title>YamilBracho on Inline editting, saveRow</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/inline-editting-saverow#p2789</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/inline-editting-saverow#p2789</guid>
        	        	<description><![CDATA[<p>You can use the beforeSubmit event for the action you are executing and add any value to the editData&#160; parameter. For example:</p>
<p>&#160;// --- edit options ---<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { height:100, <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; width:500, <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; reloadAfterSubmit:false,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; beforeSubmit: function() {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var sr = jQuery("#list").getGridParam(&#39;selrow&#39;);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var rowData = jQuery("#list").getRowData(sr);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; this.editData = {"co_motivo_desa" : rowData[&#39;co_motivo_desa&#39;]};<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; retarr = {"co_motivo_desa" : rowData[&#39;co_motivo_desa&#39;]};<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; return retarr; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p>
<p>Here I am just adding "co_motivo_desa" to the request...</p>
</p>
<p>HTH</p>
]]></description>
        	        	<pubDate>Wed, 29 Oct 2008 10:59:34 +0200</pubDate>
        </item>
        <item>
        	<title>nsorochan on Inline editting, saveRow</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/inline-editting-saverow#p2787</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/inline-editting-saverow#p2787</guid>
        	        	<description><![CDATA[<p>I am editing a grid and when I save the row, the id does not get passed to my controller code on the server.  This is the only field which does not get passed.  I tried making that field not hidden, but that does not work.  All the other data gets passed through, Anyone with any ideas?</p>
]]></description>
        	        	<pubDate>Wed, 29 Oct 2008 10:35:14 +0200</pubDate>
        </item>
</channel>
</rss>