user1631306
user1631306

Reputation: 4470

hyperlink in between the line

How can I put a hyperlink for a given word in a label in Vaadin. Example:

Please upload a ***gene annotation*** file:

In above label, "gene annotation" would be a hyperlink, which on click would either take you to a website or a local file.

I know how to do it using "link", but dont know how would I incorporate it in a sentence/label

Another example:

https://vaadin.com/docs/-/part/framework/components/components-link.html

All the blue hyperlinks in the page.

Upvotes: 0

Views: 63

Answers (1)

Chris M
Chris M

Reputation: 1068

You can enter HTML in a Label like this.

addComponent(new Label("Please upload a <a href='/'>gene annotation</a> file:",ContentMode.HTML));

Upvotes: 1

Related Questions