使用GXT 3.0,我无法更改简单标签的字体大小:
Label title = new Label("Hello world");
title.getElement().setAttribute("font-size", "50px");
RootPanel.get().add(title);
在doc中找不到任何内容!
答案 0 :(得分:0)
我知道这个答案确实很晚,但是其他人也有可能遇到类似的问题。所以我找到了这样的解决方案:
title.setStyleAttribute("font-size", "30px");