我需要显示插入到文本框中的值。我创建了这段代码:
public void onModuleLoad()
{
TextBox textValue = new TextBox();
textValue.getSelectedText();
final String index = textValue.getValue().toString();
Button button = new Button("button", new ClickHandler()
{
public void onClick(ClickEvent event)
{
Window.alert("You selected: " + index);
}
});
RootPanel.get().add(textValue);
RootPanel.get().add(button);
}
但该值不会出现在窗口中。
有人可以帮我吗?