Ah, so that's good for handlers of *DOM* events [e.g., using addDomHandler()]. For "logical" events [those added via addHandler()], however, it seems like you may still need to manually remove listeners.
Is that correct? thanks! jay On Jul 19, 3:23 pm, Thomas Broyer <[email protected]> wrote: > On 19 juil, 23:15, jay <[email protected]> wrote: > > > Where do you see the automatic removal of handlers? There's nothing > > when a widget is unloaded, and I can't find anything that would do any > > cleanup. Maybe there's some code somewhere to do cleanup as the app > > is shutting down? > > onDetach calls setEventListener(getElement(), null) which is enough to > mitigate memory > leaks:http://code.google.com/p/google-web-toolkit/wiki/DomEventsAndMemoryLeaks > And on "window.onunload", all RootPanels and wrap()ed widgets are > detached, so their onDetach method is called (which recursively detach > their children). -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
