0
有人知道如何將超鏈接引用插入Vaadin標籤嗎?例如,我有如何在標籤文本中插入超鏈接?
標籤:
Label label = new Label("Developed by Corporation);
我需要在鼠標懸停鏈接詞「公司」增加。
有人知道如何將超鏈接引用插入Vaadin標籤嗎?例如,我有如何在標籤文本中插入超鏈接?
標籤:
Label label = new Label("Developed by Corporation);
我需要在鼠標懸停鏈接詞「公司」增加。
的標籤設置HTML內容應簡單的情況下工作:
Label labelWithLink =
new Label("Developed by <a href='http://google.com'>Corporation</a>", ContentMode.HTML));
,或者,如果你使用Vaadin 6:
Label labelWithLink =
new Label("Developed by <a href='http://google.com'>Corporation</a>", Label.CONTENT_XHTML));
你可能想CSS樣式添加到硬編碼的HTML如果你想改變顯示選項。
太棒了!有用。 – Lena
使用setDescription可以將鼠標置於工具提示上。我不知道是否有