<?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: Editable Grid - Process changes on client side</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/editable-grid-process-changes-on-client-side</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/editable-grid-process-changes-on-client-side/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>essey on Editable Grid - Process changes on client side</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/editable-grid-process-changes-on-client-side#p16541</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/editable-grid-process-changes-on-client-side#p16541</guid>
        	        	<description><![CDATA[<blockquote>
<p>tony said:</p>
<p>Hello,</p>
<p>Please consult the docs how to do this. For inline edit (your case) and cell edit this is possible.</p>
<p><a rel="nofollow" href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:inline_editing" target="_blank"></a><a href="http://www.trirand.com/jqgridw" rel="nofollow" target="_blank">http://www.trirand.com/jqgridw</a>.....ne_editing</p>
<p>Regards</p>
<p>Tony</p>
</blockquote>
<hr />
<p>Thank Tony</p>
<p>Regards</p>
<p>Essey</p>
]]></description>
        	        	<pubDate>Mon, 19 Apr 2010 18:20:09 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Editable Grid - Process changes on client side</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/editable-grid-process-changes-on-client-side#p16525</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/editable-grid-process-changes-on-client-side#p16525</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Please consult the docs how to do this. For inline edit (your case) and cell edit this is possible.</p>
<p><a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:inline_editing" rel="nofollow" target="_blank"><a href="http://www.trirand.com/jqgridw" rel="nofollow">http://www.trirand.com/jqgridw</a>.....ne_editing</a></p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 19 Apr 2010 13:36:38 +0300</pubDate>
        </item>
        <item>
        	<title>essey on Editable Grid - Process changes on client side</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/editable-grid-process-changes-on-client-side#p16451</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/editable-grid-process-changes-on-client-side#p16451</guid>
        	        	<description><![CDATA[<p>Hi,</p>
</p>
<p>I have an editable Grid where I wanna process changes on client side (without &#39;editURL&#39;). Is there an event which is called when I press the &#39;Enter&#39; key. If yes how do I get access to the changed fields.</p>
</p>
<p>Here is my code:</p>
<p>&#160;&#160;</p>
<p><input type='button' class='sfcodeselect' name='sfselectit5905' value='Select Code' data-codeid='sfcode5905' /></p>
<div class='sfcode' id='sfcode5905'>&#160;&#160;&#160; var lastsel; <br />&#160;&#160;&#160; $(&#34;#adminGroupPermissions&#34;).jqGrid({ <br />&#160;&#160;&#160;&#160;&#160;&#160; datatype: &#34;local&#34;, <br />&#160;&#160;&#160;&#160;&#160;&#160; height: 250, <br />&#160;&#160;&#160;&#160;&#160;&#160; colNames:[&#39;ID&#39;,&#39;Queue Pattern&#39;, &#39;Read Queue&#39;, &#39;Write Queue&#39;,&#39;Read Topic&#39;,&#39;Write Topic&#39;], <br />&#160;&#160;&#160;&#160;&#160;&#160; colModel:[ <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;id&#39;,index:&#39;id&#39;, width:60, sorttype:&#34;int&#34;}, <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;queuePattern&#39;,index:&#39;queuePattern&#39;, width:150, editable:true, sorttype:&#34;text&#34;}, <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;permReadQueue&#39;,index:&#39;permReadQueue&#39;, width:80, editable:true, formatter:&#39;checkbox&#39;, edittype:&#39;checkbox&#39;, stype:&#39;select&#39;, editoptions:{value:&#39;1:0&#39;}}, <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;permWriteQueue&#39;,index:&#39;permWriteQueue&#39;, width:80, editable:true, formatter:&#39;checkbox&#39;, edittype:&#39;checkbox&#39;, stype:&#39;select&#39;, editoptions:{value:&#39;1:0&#39;}},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;permReadTopic&#39;,index:&#39;permReadTopic&#39;, width:80, editable:true, formatter:&#39;checkbox&#39;, edittype:&#39;checkbox&#39;, stype:&#39;select&#39;, editoptions:{value:&#39;1:0&#39;}},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;permWriteTopic&#39;,index:&#39;permWriteTopic&#39;, width:80, editable:true, formatter:&#39;checkbox&#39;, edittype:&#39;checkbox&#39;, stype:&#39;select&#39;, editoptions:{value:&#39;1:0&#39;}}<br />&#160;&#160;&#160;&#160;&#160;&#160; ], <br />&#160;&#160;&#160;&#160;&#160;&#160; multiselect: false, <br />&#160;&#160;&#160;&#160;&#160;&#160; caption: &#34;Group Permissions&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160; rowNum:10, <br />&#160;&#160;&#160;&#160;&#160;&#160; rowList:[10,20,30], <br />&#160;&#160;&#160;&#160;&#160;&#160; pager: &#39;#pager&#39;, <br />&#160;&#160;&#160;&#160;&#160;&#160; sortname: &#39;id&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160; viewrecords: true, <br />&#160;&#160;&#160;&#160;&#160;&#160; sortorder: &#34;asc&#34;, <br />&#160;&#160;&#160;&#160;&#160;&#160; onSelectRow: function(id) { <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if(id &#38;&#38; id!==lastsel) { <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#39;#adminGroupPermissions&#39;).jqGrid(&#39;restoreRow&#39;,lastsel); <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $(&#39;#adminGroupPermissions&#39;).jqGrid(&#39;editRow&#39;,id,true); <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; lastsel=id;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; } <br />&#160;&#160;&#160;&#160;&#160;&#160; }, <br />&#160;&#160;&#160;&#160;&#160;&#160; editurl: &#34;server.php&#34;, <br />&#160;&#160;&#160; }); <br />&#160;&#160;&#160; $(&#34;#adminGroupPermissions&#34;).jqGrid(&#39;navGrid&#39;,&#34;#pager&#34;,{edit:false,add:false,del:false});</div>
<p>Regards,</p>
<p>Essey</p>
]]></description>
        	        	<pubDate>Fri, 16 Apr 2010 15:05:29 +0300</pubDate>
        </item>
</channel>
</rss>