如何在TabPanel选项卡文本中插入HTML?

时间:2011-07-08 03:19:11

标签: gwt

在GWT的TabPanel中添加选项卡时,参数为:

public void add(Widget w, String tabText){...};

如何告诉TabPanel将'tabtext'视为HTML?因为我插入的字符串实际上是一个HTML。使用MenuItem可以轻松地在MenuItem中插入HTML:

public MenuItem(String text, boolean asHTML, Command cmd){...}

然而,TabPanel并非如此,任何人都有想法使用TabPanel'tabText'插入HTML?

由于

1 个答案:

答案 0 :(得分:3)

根据TabDnel的JavaDoc:http://google-web-toolkit.googlecode.com/svn/javadoc/2.3/com/google/gwt/user/client/ui/TabPanel.html

有这种方法

enter image description here

我实际上没有尝试过它是否有效,但它应该!

祝你好运!