<?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: why i get html by getRowData</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata</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/why-i-get-html-by-getrowdata/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>wizrd66 on why i get html by getRowData</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p25862</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p25862</guid>
        	        	<description><![CDATA[<p>I have noticed that sometimes even when you call Getrowdata before and edit you still get the input tags....</p>
</p>
<p>If you do a getrowData and then do an editRow .. Sometimes the Edit row happens first</p>
]]></description>
        	        	<pubDate>Fri, 03 Feb 2012 16:22:49 +0200</pubDate>
        </item>
        <item>
        	<title>maximity on why i get html by getRowData</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p17162</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p17162</guid>
        	        	<description><![CDATA[<p>I found a workaround for similar issue. I add a condition to check if getRowData returns INPUT control or valid data. If getRowData returns control then I use jquery to locate this INPUT control and get value directly from the control (i.e.)</p>
<p>&#160;var objRowData = someGrid.getRowData(cl);</p>
<p>&#160;if (objRowData.price.indexOf("input") != -1) {</p>
<p>&#160;&#160; &#160; &#160;console.info("trick", $("#1_price").val());</p>
<p>}</p>
]]></description>
        	        	<pubDate>Fri, 14 May 2010 03:00:54 +0300</pubDate>
        </item>
        <item>
        	<title>cchmatthew on why i get html by getRowData</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14520</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14520</guid>
        	        	<description><![CDATA[<p>What we did is we took the editRow(...) call from the "onRowSelect" event. Instead we now have to click on a button to edit the row.</p>
<p>By taking the editRow out of the event and making it explicit that you have to click the button to edit the row, when you call getRowData(...) it will actually return the value of the field, rather than the html of the input box.</p>
</p>
<p>the idea is that when you call getRowData the field is in fact not editable. However you have edited it before so the edited data is there.</p>
</p>
<p>Here&#39;s the code we used:</p>
</p>
<p>colModel :[<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; {width:45, name:&#39;Act&#39;&#160;&#160; &#160;&#160;&#160; &#160;, index:&#39;Act&#39;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;, editable:false}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;RecordID&#39;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;, index:&#39;RecordID&#39;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;, editable:true, hidden:true}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;Date&#39;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;, index:&#39;Date&#39;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;, editable:true, hidden:true}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;IP&#39;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;, index:&#39;IP&#39;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;, editable:true, hidden:true}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;Student_First_Name&#39;, index:&#39;Student_First_Name&#39;, editable:true}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;Student_Last_Name&#39;&#160;&#160; &#160;, index:&#39;Student_Last_Name&#39;&#160;&#160; &#160;, editable:true}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;Class&#39;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;, index:&#39;Class&#39;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;, editable:true, hidden:true},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; {width:250, name:&#39;Teacher_Name&#39;&#160;&#160; &#160;, index:&#39;Teacher_Name&#39;&#160;&#160; &#160;&#160;&#160; &#160;, editable:true},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; {width:580, name:&#39;School_Name&#39;&#160;&#160; &#160;, index:&#39;School_Name&#39;&#160;&#160; &#160;&#160;&#160; &#160;, editable:true},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;Location&#39;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;, index:&#39;Location&#39;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;, editable:true},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;PG_First_Name&#39;&#160;&#160; &#160;&#160;&#160; &#160;, index:&#39;PG_First_Name&#39;&#160;&#160; &#160;&#160;&#160; &#160;, editable:true},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; {width:200,name:&#39;PG_Last_Name&#39;&#160;&#160; &#160;&#160;&#160; &#160;, index:&#39;PG_Last_Name&#39;&#160;&#160; &#160;&#160;&#160; &#160;, editable:true},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; {width:380, name:&#39;Email&#39;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;, index:&#39;Email&#39;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;, editable:true},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;Relationship&#39;&#160;&#160; &#160;&#160;&#160; &#160;, index:&#39;Relationship&#39;&#160;&#160; &#160;&#160;&#160; &#160;, editable:true, hidden:true},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;Phone&#39;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;, index:&#39;Phone&#39;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;, editable:true} ],<br />&#160;&#160; &#160;&#160;&#160; &#160;onSelectRow: function(id){<br />&#160;&#160; &#160;&#160;&#160; &#160;if(id &#38;&#38; id!==lastsel){<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$(&#39;#scrub&#39;).saveRow(lastsel); <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;lastsel=id; <br />&#160;&#160; &#160;&#160;&#160; &#160;}<br />&#160;&#160; &#160;&#160;&#160; &#160;<br />&#160;&#160; &#160;&#160;&#160; },</p>
<p>//this creates a button that we can click to make the row editable</p>
<p>gridComplete: function(){<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;var ids = jQuery("#scrub").jqGrid(&#39;getDataIDs&#39;); <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;for(var i=0;i &#60; ids.length;i++){ <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;var cl = ids[i]; <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;be = "&#60;input style=&#39;height:22px;width:13px;&#39; type=&#39;button&#39; value=&#39;E&#39; onclick="jQuery(&#39;#scrub&#39;).editRow(&#39;"+cl+"&#39;, true);" /&#62;"; <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$("#scrub").jqGrid(&#39;setRowData&#39;,ids[i],{Act:be}); <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;} <br />&#160;&#160; &#160;&#160;&#160; &#160;},</p>
</p>
<p>then below we&#39;ve defined a save button, which then calls getRowData, which is the value we need.</p>
]]></description>
        	        	<pubDate>Wed, 03 Feb 2010 18:14:43 +0200</pubDate>
        </item>
        <item>
        	<title>napster3000 on why i get html by getRowData</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14507</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14507</guid>
        	        	<description><![CDATA[<p>Yes but if I edit the "editable" in false, then I will edit the line.</p>
<p>I want to make it editable online and get that value through GetRowData ()</p>
]]></description>
        	        	<pubDate>Tue, 02 Feb 2010 22:13:26 +0200</pubDate>
        </item>
        <item>
        	<title>cchmatthew on why i get html by getRowData</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14503</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14503</guid>
        	        	<description><![CDATA[<p>Okay, we&#39;ve come across a solution.</p>
<p>The problem is when the editable field of the column is set to true, the *value* of the cell changes to html, because it&#39;s now editable.</p>
<p>ie wheras before you might have had column "Age":"16",</p>
<p>when it is being edited, the value "16" changes to &#60;input type="textbox" id="bla" etc&#62;, and this is what is pulled out by getRowData(...).</p>
</p>
<p>if you&#39;re not sure what i mean, switch the column property editable:true -&#62; editable:false and then call getRowData(...) you&#39;ll see the actual value pop up.</p>
<p>this frustrated me for about 3 hours this afternoon, someone only just pointed out to me what was up 😀</p>
<p>from here i&#39;m going to try to figure out how to use jquery/jqgrid to change the editable property of the field to false before i call getRowData</p>
]]></description>
        	        	<pubDate>Tue, 02 Feb 2010 21:04:45 +0200</pubDate>
        </item>
        <item>
        	<title>cchmatthew on why i get html by getRowData</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14502</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14502</guid>
        	        	<description><![CDATA[<p>Hi,</p>
<p>&#160; This was confusing me as well. If we can&#39;t use the getRowData to return the actual value instead of the HTML, how then does one select the values of a row from the table given a specific rowID?</p>
]]></description>
        	        	<pubDate>Tue, 02 Feb 2010 20:47:09 +0200</pubDate>
        </item>
        <item>
        	<title>tony on why i get html by getRowData</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14443</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14443</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>You can not do this as described in the docs.</p>
<p>Best Regsrds</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 01 Feb 2010 09:38:42 +0200</pubDate>
        </item>
        <item>
        	<title>napster3000 on why i get html by getRowData</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14406</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14406</guid>
        	        	<description><![CDATA[<p>Here is my complete code</p>
</p>
<p>onSelectRow: function(ids) {<br />&#160;&#160;&#160; var data = jQuery("#list").jqGrid(&#39;getRowData&#39;,ids);<br />&#160;&#160;&#160;&#160;&#160; if(ids &#38;&#38; ids!==lastsel2){<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; jQuery(&#39;#list&#39;).restoreRow(lastsel2);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; jQuery(&#39;#list&#39;).jqGrid(&#39;editRow&#39;,ids,true);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; lastsel2=ids;<br />&#160;&#160;&#160;&#160;&#160; },</p>
<p>pager: &#39;#navigator&#39;,<br />&#160;&#160;&#160; height: &#39;auto&#39;,<br />&#160;&#160;&#160; width:&#39;auto&#39;,<br />&#160;&#160;&#160; rowNum:15,<br />&#160;&#160;&#160; rowList:[15,20,50],<br />&#160;&#160;&#160; sortname: &#39;id&#39;,<br />&#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160; sortorder: "asc",<br />&#160;&#160;&#160; multiselect: true,<br />&#160;&#160;&#160; editurl: "submit.php?function=reductions&#38;build_id=&#60;?=$build_id;?&#62;",<br />&#160;&#160;&#160; caption: &#39;Offerte&#39;,<br />&#160;&#160;&#160; loadError : function(xhr,st,err) { jQuery("#rsperror").html("Type: "+st+"; Response: "+ xhr.status + " "+xhr.statusText); }<br />&#160; });</p>
</p>
<p>&#160;&#160;&#160; jQuery("#list").jqGrid(&#39;navButtonAdd&#39;,&#39;#navigator&#39;,{<br />&#160;&#160;&#160;&#160;&#160;&#160; caption:"Clona",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; onClickButton:function(){<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var gsr = jQuery("#list").jqGrid(&#39;getGridParam&#39;,&#39;selrow&#39;);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if(gsr){</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var data = jQuery("#list").jqGrid(&#39;getRowData&#39;,gsr);</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; alert(data.price);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var datarow = {price:"430.00"};</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var su=jQuery("#list").jqGrid(&#39;addRowData&#39;,"_empty",datarow);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if(su){</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }else{<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; alert("Can not update");<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; } else {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; alert("Please select Row")<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160; });</p>
]]></description>
        	        	<pubDate>Fri, 29 Jan 2010 23:03:51 +0200</pubDate>
        </item>
        <item>
        	<title>tony on why i get html by getRowData</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14288</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14288</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Then from where is this input tag? Into the code provide from you I do not see any method from inline edit</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 26 Jan 2010 18:33:41 +0200</pubDate>
        </item>
        <item>
        	<title>napster3000 on why i get html by getRowData</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14272</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14272</guid>
        	        	<description><![CDATA[<p>No, i have not put custom input&#160; tags.</p>
</p>
<p>How i get a value of a field by rowid?? HELP ME!</p>
]]></description>
        	        	<pubDate>Tue, 26 Jan 2010 17:32:54 +0200</pubDate>
        </item>
        <item>
        	<title>tony on why i get html by getRowData</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14271</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14271</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>If you have puted custom input tags in the grid you should expect these tags from getRowData.</p>
<p>Note that this can not be avoided. Imagine if we not have input, but some other html content - How can we make decision which is the value.</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 26 Jan 2010 17:28:25 +0200</pubDate>
        </item>
        <item>
        	<title>napster3000 on why i get html by getRowData</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14220</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14220</guid>
        	        	<description><![CDATA[<p>Yes, but what&#39;s the right method to use to get row data value?</p>
]]></description>
        	        	<pubDate>Sun, 24 Jan 2010 20:41:10 +0200</pubDate>
        </item>
        <item>
        	<title>tony on why i get html by getRowData</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14219</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14219</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>This situation is described here with red text:</p>
<p><a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:methods" rel="nofollow" target="_blank"><a href="http://www.trirand.com/jqgridw" rel="nofollow">http://www.trirand.com/jqgridw</a>.....ki:methods</a></p>
<p>Best Regsrds</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Sun, 24 Jan 2010 19:04:55 +0200</pubDate>
        </item>
        <item>
        	<title>napster3000 on why i get html by getRowData</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14014</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/why-i-get-html-by-getrowdata#p14014</guid>
        	        	<description><![CDATA[<p>This is my code</p>
<p>jQuery("#list").jqGrid(&#39;navButtonAdd&#39;,&#39;#navigator&#39;,{<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; caption:"Clone",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; onClickButton:function(){<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var gsr = jQuery("#list").jqGrid(&#39;getGridParam&#39;,&#39;selrow&#39;);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if(gsr){</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var data = jQuery("#list").jqGrid(&#39;getRowData&#39;,gsr);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; alert(data.name);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var datarow = {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; name:data.name<br />&#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; };<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var su=jQuery("#list").jqGrid(&#39;addRowData&#39;,"_empty",datarow);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if(su){</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }else{<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; alert("Can not update");<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; } else {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; alert("Please select Row")<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160; });</p>
<p>the alert print:</p>
<p>&#60;input class="editable" name="name" id="18_name<img class="spSmiley" style="margin:0" title="Frown" src="/blog/wp-content/forum-smileys/sf-frown.gif" alt="Frown" />" style="width: 98%;" type="text"&#62;</p>
<p>but it should be print only a name</p>
</p>
<p>why this?</p>
]]></description>
        	        	<pubDate>Mon, 18 Jan 2010 23:47:33 +0200</pubDate>
        </item>
</channel>
</rss>