GWT更改后没有显示任何内容

时间:2014-12-02 21:56:39

标签: gwt gwt-widgets

我正在学习GWT Widget。我正在使用一个简单的EntryPoint类,我正在添加一个Widget(ToggleButton)。最初它正在运作。然后我刚刚添加了更改以更改按钮的属性。然后在特定的HTML中没有出现任何内容。我也做了一个干净的建设。

以下是我的onModuleLoad()

@Override
public void onModuleLoad()
{
    // Create Instance for your Widget
    ToggleButton aToggleButton = new ToggleButton("Normal State", "Clicked State");

// Apply required style as per your wish
aToggleButton.setPixelSize(50, 10);
aToggleButton.setTitle("My first Simple Widget");

// Add it to the panel of your wish
RootPanel.get().add(aToggleButton);
}

我错过了什么。但我确信除了添加设置大小和标题的行之外,我还没有做任何事情。

1 个答案:

答案 0 :(得分:1)

这段代码没有错。编译为javascript,清理浏览器缓存并重试。