Reputation: 10332
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
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