Konstantin Solomatov
Konstantin Solomatov

Reputation: 10332

Memory leaks in the browser

GWT DOM classes don't support DOM events because the cause memory leaks. Does anybody know which browsers are affected by this problem? And are there any libraries which can help me override this problem?

P.S. I want to use GWT but I want to work with DOM without intermediate level of widgets. If memory leaks are reproducible only in old browsers, I didn't need a workaround since users of the application don't use the old browsers.

Upvotes: 2

Views: 294

Answers (1)

Thomas Broyer
Thomas Broyer

Reputation: 64541

AFAIK, leaks mostly affect IE, but not only.

If you don't want to use widgets, or sinkEvent/addEventListener, then have a look at GWT-Query: http://code.google.com/p/gwtquery/wiki/GettingStarted#Binding_Events

Upvotes: 2

Related Questions