vote up 0 vote down star

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 this SO question and this ExtJS forum thread, but I'm hoping for some short checklist of things to do/avoid.

flag

66% accept rate

1 Answer

vote up 1 vote down

Crockford has a function that will prevent the memory leak (by breaking the circular references) for you.

YUI has the purgeElement function in the Event utility that does basically the same thing. As long as you attach all listeners through addListener and invoke purgeElement before removing something from the DOM, you should be leak-free.

link|flag
Thanks! Will it not even leak memory when the user navigates away from the page? – erikkallen Jun 26 at 13:16
I would hope so, but I'm not sure. If you measure it and can verify there's a leak (not just IE caching things even though you told it not to), you could try to listen for the window's unload event and invoke the purge function then, but that's so much work I'd only do it if I could verify there was an issue. – Hank Gay Jun 26 at 13:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.