<?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: Upgrade from 3.6.5 to 3.7.2 Issue</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/upgrade-from-3-6-5-to-3-7-2-issue</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/upgrade-from-3-6-5-to-3-7-2-issue/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>Pieter on Upgrade from 3.6.5 to 3.7.2 Issue</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/upgrade-from-3-6-5-to-3-7-2-issue#p19217</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/upgrade-from-3-6-5-to-3-7-2-issue#p19217</guid>
        	        	<description><![CDATA[<p>Anyone have any thoughts? If there&#39;s additional data I can provide, I&#39;m happy to do it.</p>
<p>Question for the gurus: Was a change introduced between 3.6.5 and 3.7.2 in the way the grid is sorted? Without digging deeper, it seems like the grid might get completely deleted/refresh on sort, which then also removes any k/v pairs tied to html objects in the grid.</p>
<p>Pieter</p>
]]></description>
        	        	<pubDate>Thu, 19 Aug 2010 22:21:03 +0300</pubDate>
        </item>
        <item>
        	<title>Pieter on Upgrade from 3.6.5 to 3.7.2 Issue</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/upgrade-from-3-6-5-to-3-7-2-issue#p19187</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/upgrade-from-3-6-5-to-3-7-2-issue#p19187</guid>
        	        	<description><![CDATA[<p>That is: I&#39;m using jQuery v1.4.1 for both versions of jqGrid.</p>
<p>Pieter&#160;</p>
]]></description>
        	        	<pubDate>Wed, 18 Aug 2010 01:17:36 +0300</pubDate>
        </item>
        <item>
        	<title>Pieter on Upgrade from 3.6.5 to 3.7.2 Issue</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/upgrade-from-3-6-5-to-3-7-2-issue#p19185</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/upgrade-from-3-6-5-to-3-7-2-issue#p19185</guid>
        	        	<description><![CDATA[<blockquote>
<p>tony said:</p>
<p>Hello,</p>
<p>The version of jQuery in first 3.6.5 and in second 3.7.2 case?</p>
<p>Regards</p>
<p>Tony</p>
</blockquote>
<hr />
<p>jQuery v1.4.1</p>
</p>
<p>Pieter</p>
]]></description>
        	        	<pubDate>Wed, 18 Aug 2010 00:05:17 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Upgrade from 3.6.5 to 3.7.2 Issue</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/upgrade-from-3-6-5-to-3-7-2-issue#p19184</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/upgrade-from-3-6-5-to-3-7-2-issue#p19184</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>The version of jQuery in first 3.6.5 and in second 3.7.2 case?</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 17 Aug 2010 23:50:33 +0300</pubDate>
        </item>
        <item>
        	<title>Pieter on Upgrade from 3.6.5 to 3.7.2 Issue</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/upgrade-from-3-6-5-to-3-7-2-issue#p19182</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/upgrade-from-3-6-5-to-3-7-2-issue#p19182</guid>
        	        	<description><![CDATA[<p>I need help with an issue that cropped up while upgrading to a newer version of jqGrid (3.6.5 -&#62; 3.7.2). My searches in the forums have not popped up any obvious threads on this topic (feel free to point me in the right direction if you know otherwise).</p>
<p>The issue I&#39;m seeing is that newer versions of jqGrid seem to discard key/value pairs added to rows when sorting the grid.</p>
<p>Here&#39;s an example:</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit5584' value='Select Code' data-codeid='sfcode5584' /></p>
<div class='sfcode' id='sfcode5584'>
<p>var j = 0;<br />table.find(&#39;input&#39;).each(function(){&#160;&#160;&#160;&#160;<br />&#160; $(this).data(&#39;myAttr&#39;, j);&#160;&#160;&#160; <br />j++;<br />}); <br />var input = table.find(&#34;#1&#34;).find(&#39;input&#39;);<br />console.log(&#34;before: &#34; + input.data(&#39;myAttr&#39;));&#160; <br />table.jqGrid(&#39;sortGrid&#39;, table.metadata().initialSort, false, &#39;desc&#39;)&#160;&#160; <br />console.log(&#34;after: &#34; + input.data(&#39;myAttr&#39;));</p>
</p>
</div>
<p>Using jqGrid 3.6.5 the output of before and after is as follows:<br />before: 0<br />after: 0</p>
<p>jqGrid 3.7.2 returns the following:<br />before: 0<br />after: undefined</p>
</p>
<p>Thoughts?</p>
<p>Pieter</p>
]]></description>
        	        	<pubDate>Tue, 17 Aug 2010 23:45:42 +0300</pubDate>
        </item>
</channel>
</rss>