Sunday, August 30, 2009

GWT Debug mode not working in Eclipse

It used to work fine. Recently I just came back to a project using GWT. Suddenly the Debugging is not working in hosted mode, even the most simple stockwatcher sample app. It was frustrating.

Google came to rescue. After some search, this blog (http://gbacon.blogspot.com/2009/06/gwt-not-hitting-breakpoints-in-hosted.html) is complaining the same issue and it turns out to be the "newer" JDK version (1.6.0_14) is the culprit. So either upgrade to latest 1.6.0_16 or downgrade to 1.6.0_13 fixed the problem!

Thursday, August 20, 2009

HTML position: absolute inside relative

If an absolute position is inside a relative positioned element, the absolute values are relative to the parent rather than to the browser window. This can be useful if you want to display popup relative to the mouse, but you don't need to calculate the mouse position.