How to I make a hyperlink that functions as a button? Or how do I make a button that looks like a hyperlink?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
One easy way is to use the Label class. Just create a new label and add a ClickHandler to it. You can then style it however you want using CSS:
|
|||||
|
|
I also found you can use the anchor class. add a click event and load the method you want as a new page. Inside the page clear the root or other panels you want using the clear() method eg. Rootpanel.get("root panel name").clear(); I wrote the example up and gave an example if you want to check it out. Hope this helps. |
|||
|
|