ExtJS and the infamous memory leak - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T16:08:34Z http://stackoverflow.com/feeds/question/1048777 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1048777/extjs-and-the-infamous-memory-leak 0 ExtJS and the infamous memory leak erikkallen 2009-06-26T12:06:54Z 2009-06-26T12:33:54Z <p>What, if anything, do I have to be careful about doing to prevent the infamous IE circular reference memory leak when using ExtJS? I have seen <a href="http://stackoverflow.com/questions/978225/are-there-memory-issues-with-ext-js">this SO question</a> and <a href="http://extjs.com/forum/showthread.php?t=18248" rel="nofollow">this ExtJS forum thread</a>, but I'm hoping for some short checklist of things to do/avoid.</p> http://stackoverflow.com/questions/1048777/extjs-and-the-infamous-memory-leak/1048834#1048834 1 Answer by Hank Gay for ExtJS and the infamous memory leak Hank Gay 2009-06-26T12:20:05Z 2009-06-26T12:33:54Z <p><a href="http://javascript.crockford.com/memory/leak.html" rel="nofollow">Crockford has a function</a> that will prevent the memory leak (by breaking the circular references) for you.</p> <p>YUI has the <a href="http://developer.yahoo.com/yui/docs/YAHOO.util.Event.html#method%5FpurgeElement" rel="nofollow">purgeElement</a> function in the Event utility that does basically the same thing. As long as you attach all listeners through <code>addListener</code> and invoke <code>purgeElement</code> before removing something from the DOM, you should be leak-free.</p>