<?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: make one row not editable?</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/make-one-row-not-editable</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/make-one-row-not-editable/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on make one row not editable?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/make-one-row-not-editable#p16213</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/make-one-row-not-editable#p16213</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>For form edit this is difficult to do, when we have a form with pager elements</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Sat, 03 Apr 2010 17:53:51 +0300</pubDate>
        </item>
        <item>
        	<title>kei91145 on make one row not editable?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/make-one-row-not-editable#p16159</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/make-one-row-not-editable#p16159</guid>
        	        	<description><![CDATA[<blockquote>
<p>tony said:</p>
<p>Hello,</p>
<p>If you use cell edit or inline edit - the answer is yes.</p>
<p>Look into the docs.</p>
<p>The first hint is here:</p>
<p><a rel="nofollow" href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:inline_editing#editrow" target="_blank"></a><a href="http://www.trirand.com/jqgridw" rel="nofollow" target="_blank">http://www.trirand.com/jqgridw</a>.....ng#editrow</p>
<p>Best Regsrds</p>
<p>Tony</p>
</blockquote>
<hr />
<p>Therefore, I can&#39;t do this in form edit?</p>
<p>Anyway, thank for your help. I may change to use inline edit.<img class="spSmiley" style="margin:0" title="Wink" src="/blog/wp-content/forum-smileys/sf-wink.gif" alt="Wink" /></p></p>
]]></description>
        	        	<pubDate>Fri, 02 Apr 2010 06:52:05 +0300</pubDate>
        </item>
        <item>
        	<title>kai on make one row not editable?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/make-one-row-not-editable#p16103</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/make-one-row-not-editable#p16103</guid>
        	        	<description><![CDATA[<blockquote>
<p>tony said:</p>
<p>Hello,</p>
<p>If you use cell edit or inline edit - the answer is yes.</p>
<p>Look into the docs.</p>
<p>The first hint is here:</p>
<p><a rel="nofollow" href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:inline_editing#editrow" target="_blank"></a><a href="http://www.trirand.com/jqgridw" rel="nofollow" target="_blank">http://www.trirand.com/jqgridw</a>.....ng#editrow</p>
<p>Best Regsrds</p>
<p>Tony</p>
</blockquote>
<hr />
<p>I&#39;m trying to achieve something similar. Forums indicate that there are three aproaches:</p>
</p>
<p>1) Set editable on row:</p>
<p><span style="white-space: pre;"> </span>$(&#39;#rowid&#39;, &#39;#gridid&#39;).attr(&#39;editable&#39;, &#39;0&#39;);&#160;</p>
<p>2) Add the not editable row class</p>
<p><span style="white-space: pre;"> </span>$(&#39;#rowid&#39;, &#39;#gridid&#39;).addClass(&#39;not-editable-row&#39;);</p>
<p>3) Use a handler and call RestoreRow.</p>
<pre class="code javascript"><span style="white-space: pre;">	</span></pre>
<pre class="code javascript"><span style="white-space: pre;"><pre class="code javascript">var somecondition_flag;
jQuery("#gridid").jqGrid({
...
   onSelectRow: function(id){ 
      if(id==somecondition_flag){ 
         jQuery(this).restoreRow(rowid); 
      } </pre>
</p>
<p></span></p>
<p>Approaches 1 and 2 aren&#39;t working for me. &#160;Tony, whats the preferred method?</p>
</p>
<p>thanks</p></p>
]]></description>
        	        	<pubDate>Wed, 31 Mar 2010 18:54:11 +0300</pubDate>
        </item>
        <item>
        	<title>tony on make one row not editable?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/make-one-row-not-editable#p16090</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/make-one-row-not-editable#p16090</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>If you use cell edit or inline edit - the answer is yes.</p>
<p>Look into the docs.</p>
<p>The first hint is here:</p>
<p><a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:inline_editing#editrow" rel="nofollow" target="_blank"><a href="http://www.trirand.com/jqgridw" rel="nofollow">http://www.trirand.com/jqgridw</a>.....ng#editrow</a></p>
<p>Best Regsrds</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Wed, 31 Mar 2010 17:55:29 +0300</pubDate>
        </item>
        <item>
        	<title>kei91145 on make one row not editable?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/make-one-row-not-editable#p15954</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/make-one-row-not-editable#p15954</guid>
        	        	<description><![CDATA[<p>Is there any simple method to make one row that is not editable, while other remain editable?</p>
<p>ps: jqGrid 3.6.4</p>
]]></description>
        	        	<pubDate>Thu, 25 Mar 2010 15:17:04 +0200</pubDate>
        </item>
</channel>
</rss>