<?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: &#091;Patch&#093; isCellEditable callback</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/patch-iscelleditable-callback</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/bugs/patch-iscelleditable-callback/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>Joris on &#091;Patch&#093; isCellEditable callback</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/patch-iscelleditable-callback#p2846</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/patch-iscelleditable-callback#p2846</guid>
        	        	<description><![CDATA[<p>Oh yeah sorry, I just copied some code from elsewhere in jqgrid 🙂 I can imagine if you&#39;d only need the table, row and column</p>
]]></description>
        	        	<pubDate>Fri, 31 Oct 2008 09:33:45 +0200</pubDate>
        </item>
        <item>
        	<title>tony on &#091;Patch&#093; isCellEditable callback</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/patch-iscelleditable-callback#p2825</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/patch-iscelleditable-callback#p2825</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Thank you. I will try to include this, but in your code there is variable</p>
<p>which is not defined and this is the variable tmp.</p>
<p>$t.p.isCellEditable($t.rows[iRow].id,nm,<strong>tmp</strong>,iRow,iCol);</p>
<p>This variable is set after your call the event and not before that.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Fri, 31 Oct 2008 02:02:41 +0200</pubDate>
        </item>
        <item>
        	<title>Joris on &#091;Patch&#093; isCellEditable callback</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/patch-iscelleditable-callback#p2807</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/patch-iscelleditable-callback#p2807</guid>
        	        	<description><![CDATA[<p>This callback allows a user to specify if a cell is really editable. We use this because some cells in the same column aren&#39;t editable (locked)</p>
<p>grid.celledit.js:</p>
<p>Line 63, instead of:</p>
</p>
<p><span> </span>if ($t.p.colModel[iCol].editable===true &#38;&#38; ed===true) {</p>
<div>:</div>
<div></div>
<div>
<div><span> </span>var cellEditable = true;</div>
<div><span> </span>if ($.isFunction($t.p.isCellEditable)) {</div>
<div><span> </span>cellEditable = $t.p.isCellEditable($t.rows[iRow].id,nm,tmp,iRow,iCol);</div>
<div><span> </span>}</div>
<div><span> </span></div>
<div><span> </span>if ($t.p.colModel[iCol].editable===true &#38;&#38; ed===true &#38;&#38; cellEditable) {</div>
</div>
<div></div>
<div></div>
<div>The method isCellEditable is called, and if it returns false, you cannot edit the cell even if the column is editable.</div>
]]></description>
        	        	<pubDate>Thu, 30 Oct 2008 05:33:53 +0200</pubDate>
        </item>
</channel>
</rss>