How to make mailto link in gwt?

How to make mailto a link in gwt using Label, Hyperlink or any other widget and add this widget to DisclosurePanel. Any idea please?

+5
source share
1 answer
disclosurePanel.setContent(
    new Anchor("Contact us", "mailto:contact@example.com"));
+5
source

All Articles