<?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: memory leak when switching between pages?</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/memory-leak-when-switching-between-pages</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/memory-leak-when-switching-between-pages/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>michaelg on memory leak when switching between pages?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/memory-leak-when-switching-between-pages#p16994</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/memory-leak-when-switching-between-pages#p16994</guid>
        	        	<description><![CDATA[<p>Hi Tony,</p>
</p>
<p>Thanks very much for that.&#160; I love your work 🙂</p>
</p>
<p>Cheers,</p>
<p>Michael</p>
]]></description>
        	        	<pubDate>Fri, 07 May 2010 02:11:56 +0300</pubDate>
        </item>
        <item>
        	<title>tony on memory leak when switching between pages?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/memory-leak-when-switching-between-pages#p16959</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/memory-leak-when-switching-between-pages#p16959</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>This is corrected in 3.6.5. Also we introduce a new parameter - deepempty - see what is new.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Thu, 06 May 2010 14:50:09 +0300</pubDate>
        </item>
        <item>
        	<title>michaelg on memory leak when switching between pages?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/memory-leak-when-switching-between-pages#p16780</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/memory-leak-when-switching-between-pages#p16780</guid>
        	        	<description><![CDATA[<p>I&#39;ve been looking into this for hours, one interesting thing ive found is that the DOM elements that are left lying around are &#60;TR&#62; and &#60;TD&#62; elements with no parent.&#160; Does anyone know of a manual way of deleting these?&#160; I can&#39;t seem to access them in javascript, but the sieve tool shows that they&#39;re still hanging around (and build up each time i switch pages)</p>
</p>
<p><img class="spSmiley" style="margin:0" title="Yell" src="/blog/wp-content/forum-smileys/sf-yell.gif" alt="Yell" /></p>
]]></description>
        	        	<pubDate>Thu, 29 Apr 2010 03:04:33 +0300</pubDate>
        </item>
        <item>
        	<title>michaelg on memory leak when switching between pages?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/memory-leak-when-switching-between-pages#p16770</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/memory-leak-when-switching-between-pages#p16770</guid>
        	        	<description><![CDATA[<p>Oh, i forgot to add this (it might help) ...</p>
</p>
<p>function getData(postdata) {<br />&#160;&#160; &#160;<br />&#160;&#160;&#160; $.ajax({<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; type: "POST",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; url: dataURL,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; data: JSON.stringify(postdata),<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; dataType: "json",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; contentType: "application/json; charset=utf-8",</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; success: loadGrid,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; error: function() { alert(&#39;error&#39;); }<br />&#160;&#160;&#160; });<br />}</p>
</p>
<p>function loadGrid(jsondata) {<br />&#160;&#160;&#160; var thegrid = $(gridName)[0];<br />&#160;&#160;&#160; thegrid.addJSONData(jsondata.d);<br />}</p>
<p><img class="spSmiley" style="margin:0" title="Smile" src="/blog/wp-content/forum-smileys/sf-smile.gif" alt="Smile" /></p>
]]></description>
        	        	<pubDate>Wed, 28 Apr 2010 11:08:27 +0300</pubDate>
        </item>
        <item>
        	<title>michaelg on memory leak when switching between pages?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/memory-leak-when-switching-between-pages#p16766</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/memory-leak-when-switching-between-pages#p16766</guid>
        	        	<description><![CDATA[<p>Hi All,</p>
<p>First i just want to say that I love jqgrid - ive been using it for a few weeks now and think its awesome 🙂</p>
<p>I&#39;m trying to make a large web application, and have hit a wall in regards to memory leaks.&#160; I find that my browser chews up memory quite alot.&#160;</p>
<p>As an example, I have a simple page with a jqgrid in it with paging enabled.&#160; Using sieve, i find that when i switch from page 1 to 2, then back to 2, and keep doing that, then rows are not released from memory and the DOM count just keeps building.</p>
<p>I&#39;m using a function for the grid&#39;s datatype, which gets the data using AJAX and uses thegrid.addJSONData().&#160; Could this be the problem.</p>
<p>Has anyone else had these sorts of issues?&#160; Its driving me nuts 🙂</p>
<p>Cheers,</p>
<p>Michael</p>
]]></description>
        	        	<pubDate>Wed, 28 Apr 2010 04:56:09 +0300</pubDate>
        </item>
</channel>
</rss>