<?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: Edit Row &#38; Sort Problem</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/edit-row-sort-problem</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/edit-row-sort-problem/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>pooja on Edit Row &#38; Sort Problem</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/edit-row-sort-problem#p29711</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/edit-row-sort-problem#p29711</guid>
        	        	<description><![CDATA[<p>Hi Tony,</p>
</p>
<p>Is this feature still disabled in current version? I&#39;m working on a grid which needs to be sorted basd on the edited data.</p></p>
]]></description>
        	        	<pubDate>Fri, 18 Oct 2013 18:30:42 +0300</pubDate>
        </item>
        <item>
        	<title>Akshitha on Edit Row &#38; Sort Problem</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/edit-row-sort-problem#p16819</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/edit-row-sort-problem#p16819</guid>
        	        	<description><![CDATA[<p>Thanks for ur info Tony.. looking forward for sort option in the later release<img class="spSmiley" style="margin:0" title="Smile" src="/blog/wp-content/forum-smileys/sf-smile.gif" alt="Smile" />..</p>
]]></description>
        	        	<pubDate>Fri, 30 Apr 2010 13:43:22 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Edit Row &#38; Sort Problem</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/edit-row-sort-problem#p16691</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/edit-row-sort-problem#p16691</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Currently sorting is disabled when some row is edited with inline or cell edit.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 26 Apr 2010 14:30:30 +0300</pubDate>
        </item>
        <item>
        	<title>Akshitha on Edit Row &#38; Sort Problem</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/edit-row-sort-problem#p16617</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/edit-row-sort-problem#p16617</guid>
        	        	<description><![CDATA[<p>Hi Tony,</p>
<p>&#160;&#160;&#160;&#160; I have a grid which shows some of the column in a editable mode &#38; other columns in a non-editable mode when it loads. i could achieve this grid through afterInsertRow event. But i am not able to do sorting. My code is :</p>
<p>jQuery(document).ready(function(){ <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; var mygrid = jQuery("#list").jqGrid({<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; url: '&#60;s:url namespace="/list" action="list" /&#62;',<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; datatype: 'json',<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; width: 940,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; mtype: 'POST', <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; colNames:['Col 1', 'Col 2','Col 3'],<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; colModel:[ <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:'col1',index:'col',width:200,searchoptions:{sopt:['bw']}},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:'col2',sortable:false,search:false,width:180,align:"center",editable: true},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:'col3',sortable:false,search:false,width:180,align:"center",editable: true}<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; ],&#160;&#160;&#160; &#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; &#160;&#160;&#160; &#160;&#160;&#160; jsonReader : {<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; repeatitems: 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; &#160;&#160;&#160; &#160;&#160;&#160; rowNum:10,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; rowList:[5,10],<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; pager:'#navigatorBar',<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; viewrecords: true,&#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; &#160;&#160;&#160; &#160;&#160;&#160; height: 'auto',<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; width: 'auto',<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; altRows: true,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; caption: "Example",<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; afterInsertRow: function(id,data) {&#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; jQuery('#list').jqGrid('editRow',id); &#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; &#160;&#160;&#160; &#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; &#160;&#160;&#160; })<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; .navGrid('#navigatorBar',{edit:false,add:false,del:false,searchtext:"Search",refresh:false},//options <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {},//edit options<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {},//add options<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {},//del options<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {}, //search<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {} //view options<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; ) // END OF navGrid&#160;&#160;&#160; &#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; });// END OF ready function</p>
</p>
<p>if i dont give  jQuery('#list').jqGrid('editRow',id); inside afterInsertRow event it sorts.</p>
<p>Am i doing anything wrong? Or is there any other way to achieve this? &#160;</p>
]]></description>
        	        	<pubDate>Fri, 23 Apr 2010 11:42:31 +0300</pubDate>
        </item>
</channel>
</rss>