tags:

views:

253

answers:

2

This should be simple, but somehow I can't find a way to create simple hyperlink in GWT. Basically, I want to load another page when users clicks on something.

Hyperlink seems to point to internal GWT application state only. I guess I could put the link in HTML code itself, but how do I create it in Java?

+3  A: 

You're looking for Anchor.

Jason Hall
you linked to the 1.5 documentation.
antony.trupe
+3  A: 
this.add(new Anchor("www.stackoverflow.com"));

Anchor

antony.trupe