<?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: setSelection with problematic ID's</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/setselection-with-problematic-ids</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/setselection-with-problematic-ids/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>sirshurf on setSelection with problematic ID's</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/setselection-with-problematic-ids#p21638</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/setselection-with-problematic-ids#p21638</guid>
        	        	<description><![CDATA[<p>In addition to the prevoiuse one, here is a fix with the reset selection fixed:</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit4677' value='Select Code' data-codeid='sfcode4677' /></p>
<div class='sfcode' id='sfcode4677'>$.jgrid.extend({<br />&#160;&#160; &#160;setSelection : function(selection,onsr) {<br />&#160;&#160; &#160;&#160;&#160; &#160;return this.each(function(){<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;var $t = this, stat,pt, ner, ia, tpsr;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(selection === undefined) { return; }<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;onsr = onsr === false ? false : true;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;pt=$t.rows.namedItem(selection+&#34;&#34;);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(!pt) { return; }<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;function scrGrid(iR){<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;var ch = $($t.grid.bDiv)[0].clientHeight,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;st = $($t.grid.bDiv)[0].scrollTop,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;rpos = $t.rows[iR].offsetTop,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;rh = $t.rows[iR].clientHeight;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(rpos+rh &#62;= ch+st) { $($t.grid.bDiv)[0].scrollTop = rpos-(ch+st)+rh+st; }<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;else if(rpos &#60; ch+st) {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(rpos &#60; st) {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$($t.grid.bDiv)[0].scrollTop = rpos;<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;}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if($t.p.scrollrows===true) {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;ner = $t.rows.namedItem(selection).rowIndex;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(ner &#62;=0 ){<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;scrGrid(ner);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(!$t.p.multiselect) {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(pt.className !== &#34;ui-subgrid&#34;) {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if( $t.p.selrow ) {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$($t.rows.namedItem($t.p.selrow)).removeClass(&#34;ui-state-highlight&#34;).attr(&#34;aria-selected&#34;,&#34;false&#34;);<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;$t.p.selrow = pt.id;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$(pt).addClass(&#34;ui-state-highlight&#34;).attr(&#34;aria-selected&#34;,&#34;true&#34;);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if( $t.p.onSelectRow &#38;&#38; onsr) { $t.p.onSelectRow.call($t,$t.p.selrow, true); }<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;} else {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$t.p.selrow = pt.id;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;ia = $.inArray($t.p.selrow,$t.p.selarrrow);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if (&#160; ia === -1 ){ <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(pt.className !== &#34;ui-subgrid&#34;) { $(pt).addClass(&#34;ui-state-highlight&#34;).attr(&#34;aria-selected&#34;,&#34;true&#34;);}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;stat = true;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$($(pt).find(&#39;input&#39;)).attr(&#34;checked&#34;,stat);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$t.p.selarrrow.push($t.p.selrow);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if( $t.p.onSelectRow &#38;&#38; onsr) { $t.p.onSelectRow.call($t,$t.p.selrow, stat); }<br />&#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;if(pt.className !== &#34;ui-subgrid&#34;) { $(pt).removeClass(&#34;ui-state-highlight&#34;).attr(&#34;aria-selected&#34;,&#34;false&#34;);}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;stat = false;&#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;$($(pt).find(&#39;input&#39;)).attr(&#34;checked&#34;,stat);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$t.p.selarrrow.splice(ia,1);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if( $t.p.onSelectRow &#38;&#38; onsr) { $t.p.onSelectRow.call($t,$t.p.selrow, stat); }<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;tpsr = $t.p.selarrrow[0];<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$t.p.selrow = (tpsr === undefined) ? null : tpsr;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;}<br />&#160;&#160; &#160;&#160;&#160; &#160;});<br />&#160;&#160; &#160;},<br />&#160;&#160; &#160;resetSelection : function(){<br />&#160;&#160; &#160;&#160;&#160; &#160;return this.each(function(){<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;var t = this, ind;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(!t.p.multiselect) {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(t.p.selrow) {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$(&#34;#&#34;+t.p.id+&#34; tbody:first tr#&#34;+$.jgrid.jqID(t.p.selrow)).removeClass(&#34;ui-state-highlight&#34;).attr(&#34;aria-selected&#34;,&#34;false&#34;);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;t.p.selrow = null;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;} else {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$(t.p.selarrrow).each(function(i,n){<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;ind = t.rows.namedItem(n);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$(ind).removeClass(&#34;ui-state-highlight&#34;).attr(&#34;aria-selected&#34;,&#34;false&#34;);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$($(ind).find(&#39;input&#39;)).attr(&#34;checked&#34;,false);<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;});<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$(&#34;#cb_&#34;+$.jgrid.jqID(t.p.id)).attr(&#34;checked&#34;,false);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;t.p.selarrrow = [];<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;t.p.savedRow = [];<br />&#160;&#160; &#160;&#160;&#160; &#160;});<br />&#160;&#160; &#160;}<br />});&#160;&#160;&#160;</div>
]]></description>
        	        	<pubDate>Wed, 12 Jan 2011 15:06:51 +0200</pubDate>
        </item>
        <item>
        	<title>sirshurf on setSelection with problematic ID's</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/setselection-with-problematic-ids#p21635</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/setselection-with-problematic-ids#p21635</guid>
        	        	<description><![CDATA[<p>It so happance that the application I have here have Row ID&#39;s with commas in them (example 1432,1433,1444 this is Single ID!)</p>
</p>
<p>The problem is that I ahve it in Multiseelct and I need to select spesific rows from outside the grid.</p>
</p>
<p>If I was using setSelection the Row was selected but not the Checkbox.</p>
</p>
<p>I ahve found the error, it&#39;s becouse jQuery get by ID cannt work with ID&#39;s like that.</p>
</p>
<p>here is My Fix:</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit866' value='Select Code' data-codeid='sfcode866' /></p>
<div class='sfcode' id='sfcode866'>$.jgrid.extend({<br />&#160;&#160; &#160;setSelection : function(selection,onsr) {<br />&#160;&#160; &#160;&#160;&#160; &#160;return this.each(function(){<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;var $t = this, stat,pt, ner, ia, tpsr;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(selection === undefined) { return; }<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;onsr = onsr === false ? false : true;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;pt=$t.rows.namedItem(selection+&#34;&#34;);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(!pt) { return; }<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;function scrGrid(iR){<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;var ch = $($t.grid.bDiv)[0].clientHeight,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;st = $($t.grid.bDiv)[0].scrollTop,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;rpos = $t.rows[iR].offsetTop,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;rh = $t.rows[iR].clientHeight;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(rpos+rh &#62;= ch+st) { $($t.grid.bDiv)[0].scrollTop = rpos-(ch+st)+rh+st; }<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;else if(rpos &#60; ch+st) {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(rpos &#60; st) {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$($t.grid.bDiv)[0].scrollTop = rpos;<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;}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if($t.p.scrollrows===true) {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;ner = $t.rows.namedItem(selection).rowIndex;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(ner &#62;=0 ){<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;scrGrid(ner);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(!$t.p.multiselect) {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(pt.className !== &#34;ui-subgrid&#34;) {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if( $t.p.selrow ) {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$($t.rows.namedItem($t.p.selrow)).removeClass(&#34;ui-state-highlight&#34;).attr(&#34;aria-selected&#34;,&#34;false&#34;);<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;$t.p.selrow = pt.id;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$(pt).addClass(&#34;ui-state-highlight&#34;).attr(&#34;aria-selected&#34;,&#34;true&#34;);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if( $t.p.onSelectRow &#38;&#38; onsr) { $t.p.onSelectRow.call($t,$t.p.selrow, true); }<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;} else {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$t.p.selrow = pt.id;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;ia = $.inArray($t.p.selrow,$t.p.selarrrow);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if (&#160; ia === -1 ){ <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(pt.className !== &#34;ui-subgrid&#34;) { $(pt).addClass(&#34;ui-state-highlight&#34;).attr(&#34;aria-selected&#34;,&#34;true&#34;);}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;stat = true;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$($(pt).find(&#39;input&#39;)).attr(&#34;checked&#34;,stat);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$t.p.selarrrow.push($t.p.selrow);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if( $t.p.onSelectRow &#38;&#38; onsr) { $t.p.onSelectRow.call($t,$t.p.selrow, stat); }<br />&#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;if(pt.className !== &#34;ui-subgrid&#34;) { $(pt).removeClass(&#34;ui-state-highlight&#34;).attr(&#34;aria-selected&#34;,&#34;false&#34;);}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;stat = false;&#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;$($(pt).find(&#39;input&#39;)).attr(&#34;checked&#34;,stat);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$t.p.selarrrow.splice(ia,1);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if( $t.p.onSelectRow &#38;&#38; onsr) { $t.p.onSelectRow.call($t,$t.p.selrow, stat); }<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;tpsr = $t.p.selarrrow[0];<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$t.p.selrow = (tpsr === undefined) ? null : tpsr;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;}<br />&#160;&#160; &#160;&#160;&#160; &#160;});<br />&#160;&#160; &#160;}<br />});&#160;&#160; &#160;</div>
<p>It&#39;s not perfect, since if you would have an input field in the row, that will be broken, but it&#39;s a good direction.</p></p>
]]></description>
        	        	<pubDate>Wed, 12 Jan 2011 12:57:35 +0200</pubDate>
        </item>
</channel>
</rss>