<?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: Inline cell edit problem - Cell doesn't switch to edit mode</title>
	<link>http://www.trirand.com/blog/?page_id=393/discussion/inline-cell-edit-problem-cell-doesnt-switch-to-edit-mode</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/discussion/inline-cell-edit-problem-cell-doesnt-switch-to-edit-mode/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Inline cell edit problem - Cell doesn't switch to edit mode</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/inline-cell-edit-problem-cell-doesnt-switch-to-edit-mode#p25327</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/inline-cell-edit-problem-cell-doesnt-switch-to-edit-mode#p25327</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Remove all the events related to the cell edit and try.</p>
<p>You have error here instead:</p>
<p>&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160; colModel:[ {name:&#39;propId&#39;,index:&#39;propId&#39;, width:50, sorttype:"int"},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;propName&#39;,index:&#39;propName&#39;, width:300},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;value&#39;,index:&#39;value&#39;, width:300, editable:true}, &#60;=====Error<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ],</p>
</p>
<p>Or post the true code or make a link to the problem</p>
</p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Mon, 05 Dec 2011 18:22:17 +0200</pubDate>
        </item>
        <item>
        	<title>swap on Inline cell edit problem - Cell doesn't switch to edit mode</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/inline-cell-edit-problem-cell-doesnt-switch-to-edit-mode#p25323</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/inline-cell-edit-problem-cell-doesnt-switch-to-edit-mode#p25323</guid>
        	        	<description><![CDATA[<p>Considering the switching on of inline cell editing looks so easy for  some reason I am having a problem getting it to work. When I click on a  cell nothing happens and the fields don&#39;t switch to edit mode. But sometimes It switches to edit mode. I have  reduced my code to the minimum, is there something obvious I have  missed?</p>
</p>
<p><span style="color: #0000ff;">jQuery(&#39;#list4&#39;).jqGrid({<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;datatype: "local",<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;height: 150,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;colNames:[&#39;SR No&#39;, &#39;Property&#39;, &#39;Value&#39;],<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;colModel:[ {name:&#39;propId&#39;,index:&#39;propId&#39;, width:50, sorttype:"int"},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;propName&#39;,index:&#39;propName&#39;, width:300},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;value&#39;,index:&#39;value&#39;, width:300, editable:true},<br />&#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;caption: "Property Sheet",<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;forceFit : true,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;cellEdit: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;cellsubmit: &#39;clientArray&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;afterEditCell: function (id,name,val,iRow,iCol)<br />&#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;afterSaveCell : function(rowid,name,val,iRow,iCol)<br />&#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;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160; alert("saved");</span></p>
<p>&#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; });<br />&#160;&#160; &#160;&#160;&#160; &#160;<br />&#160;&#160; &#160;&#160;&#160; &#160;var rowsNum = jQuery(&#39;#list4&#39;).jqGrid(&#39;getGridParam&#39;,&#39;rowNum&#39;);<br />&#160;&#160; &#160;&#160;&#160; &#160;for(var j=1;j&#60;=rowsNum;j++)&#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;jQuery(&#39;#list4&#39;).jqGrid(&#39;delRowData&#39;,j);<br />&#160;&#160; &#160;&#160;&#160; &#160;<br />&#160;&#160; &#160;&#160; &#160;&#160;&#160; &#160;//alert("till this OK");<br />&#160;&#160; &#160;&#160;&#160;&#160; for(var i=0;i&#60;=res.propertyDetails.length;i++)&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;jQuery(&#39;#list4&#39;).jqGrid(&#39;addRowData&#39;,i+1,res.propertyDetails[i]);</p>
</p>
<p>Please let me know what is problem.</p>
<p>Thanks in advance.</p>
]]></description>
        	        	<pubDate>Mon, 05 Dec 2011 09:14:30 +0200</pubDate>
        </item>
</channel>
</rss>