<?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: if _search is true disable sorting</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/if-_search-is-true-disable-sorting</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/if-_search-is-true-disable-sorting/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on if _search is true disable sorting</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/if-_search-is-true-disable-sorting#p16098</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/if-_search-is-true-disable-sorting#p16098</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>maybe you can use gridComplete or loadComplete</p>
<p>Reagrds</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Wed, 31 Mar 2010 18:20:04 +0300</pubDate>
        </item>
        <item>
        	<title>bas_vdl on if _search is true disable sorting</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/if-_search-is-true-disable-sorting#p15979</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/if-_search-is-true-disable-sorting#p15979</guid>
        	        	<description><![CDATA[<p>but on wich event can i set and reset this?</p>
]]></description>
        	        	<pubDate>Fri, 26 Mar 2010 12:32:56 +0200</pubDate>
        </item>
        <item>
        	<title>tony on if _search is true disable sorting</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/if-_search-is-true-disable-sorting#p15878</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/if-_search-is-true-disable-sorting#p15878</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Maybe you will need to to play with sortable enable/disable</p>
<p><a href="http://jqueryui.com/demos/sortable/" rel="nofollow" target="_blank">http://jqueryui.com/demos/sortable/</a></p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 22 Mar 2010 12:36:41 +0200</pubDate>
        </item>
        <item>
        	<title>bas_vdl on if _search is true disable sorting</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/if-_search-is-true-disable-sorting#p15830</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/if-_search-is-true-disable-sorting#p15830</guid>
        	        	<description><![CDATA[<p>is it possible to disable row sorting (drag &#39;n drop) if _search is true?</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit7850' value='Select Code' data-codeid='sfcode7850' /></p>
<div class='sfcode' id='sfcode7850'>&#160;&#160;&#160; jQuery(&#39;#grid&#39;).jqGrid({<br />&#160;&#160; &#160;&#160;&#160; &#160;//grid<br />&#160;&#160; &#160;&#160;&#160; &#160;url: &#39;admin.php?m=RouteSystem&#38;_action=AjaxGetRouteRulesByType&#38;memberType=biz&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;datatype: &#39;json&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;colNames: [&#39;#&#39;, &#39;Prioriteit&#39;, &#39;Type&#39;, &#39;Bedrijf/Account&#39;, &#39;Land&#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;`rr`.`id`&#39;, width:10, sortable:false},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:&#39;priority&#39;, index:&#39;rr``.`priority`&#39;, width:60, sortable:false},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:&#39;type&#39;, index:&#39;type&#39;, width:40, sortable:false, search:false, editable:true, edittype:&#34;select&#34;, editoptions:{value:&#34;biz:priv&#34;}}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:&#39;company&#39;, index:&#39;`typeMember`&#39;, width:150, sortable:false, hidden:true},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{name:&#39;country&#39;, index:&#39;`c`.`name`&#39;, width:150, sortable:false},<br />&#160;&#160; &#160;&#160;&#160; &#160;],<br />&#160;&#160; &#160;&#160;&#160; &#160;//autowidth: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;width: 850,<br />&#160;&#160; &#160;&#160;&#160; &#160;//rownumbers: true, <br />&#160;&#160; &#160;&#160;&#160; &#160;pager: &#39;#pager&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;sortname: &#39;`priority`&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;altRows: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;viewrecords: true, <br />&#160;&#160; &#160;&#160;&#160; &#160;caption: &#39;Routeplannen voor zakelijke klanten&#39;, &#160;&#160; &#160;<br />&#160;&#160; &#160;});<br />&#160;&#160; &#160;jQuery(&#39;#grid&#39;).jqGrid(&#39;navGrid&#39;, &#39;#pager&#39;,{edit:false, add:true, del:false});<br />&#160;&#160; &#160;jQuery(&#34;#grid&#34;).jqGrid(&#39;sortableRows&#39;, {<br />&#160;&#160; &#160;&#160;&#160; &#160;cursor: &#39;move&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;update: function () {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;var serial = jQuery(&#39;#grid&#39;).jqGrid(&#39;getRowData&#39;);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;var i = 1;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$.each(serial, function(index, value) { <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160; jQuery(&#34;#grid&#34;).jqGrid(&#39;setRowData&#39;, value.id, {priority:i});<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160; i++; <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;});<br />&#160;&#160; &#160;&#160;&#160; &#160;}<br />&#160;&#160; &#160;});</div>
]]></description>
        	        	<pubDate>Fri, 19 Mar 2010 09:56:50 +0200</pubDate>
        </item>
</channel>
</rss>