March 21st, 2012

How to cancel backspace key from navigating back…

Don’t ask me who had the insane idea that one can navigate back when pressing the back space.

In GWT we did something like that to cancel the backspace back navigation:

Event.addNativePreviewHandler(new NativePreviewHandler() { @Override public void onPreviewNativeEvent(NativePreviewEvent event) { if (event.getNativeEvent().getKeyCode() == KeyCodes.KEY_BACKSPACE) { if (event.getNativeEvent().getEventTarget() != null) { Element as = Element.as(event.getNativeEvent().getEventTarget()); [...]

December 8th, 2011

GWT 2.5?

Normally the GWT team does not comment on future milestones, releases and does not provide an official roadmap (Issue 7013).

But this time, the team posted several comments on whether GWT is dead or not (mainly because of the fuss around Dart), and Ray Cromwell posted a comment providing some insight on what is [...]

May 5th, 2011

GWT-JSF – Wahl-o-Mat

Die kleine Entscheidungshilfe, bzw. die Vortragsfolien zu unserem Vortrag auf der Jax 2011.

Oder direkt hier: http://bit.ly/gwt-jsf-wahlomat

January 30th, 2011

IE 6 / 7 / 8 bad performance?

When you start developing complex enterprise applications using GWT, you can run into the problem that IE does not perform quite well with too much JavaScript.

Many companies are still stuck in – IMHO – the most successfull vendor-version lock-in web history. Ever heard this?

I cannot upgrade IE in our company because of [...]

January 30th, 2011

GWT and standards compliance

This is a sort of “standard” question when it comes down to the topic web frameworks, Java and finally the Google Web Toolkit (GWT).

My first though is, what exactly is meant with “standard”?
Continue reading GWT and standards compliance