window.alert更改gwt中的标题

时间:2013-02-06 04:36:49

标签: gwt uibinder gwt2

** **

  

Window.alert

**用于gwt,一个窗口弹出消息,我想**

  

更改标题

**那个窗口,请急需我帮忙

2 个答案:

答案 0 :(得分:0)

Window.alert()打开一个包含OK按钮的本机对话框。你不能改变它的标题。

使用PopupPanelDecoratedPopupPanelDialogBox

答案 1 :(得分:0)

你无法改变那个...的标题,因为你需要考虑另一种选择..

以下是其中之一。

这是一个简单的对话框,源自GWT示例代码

// Create the popup dialog box
    final DialogBox dialogBox = new DialogBox();
    dialogBox.setText("Remote Procedure Call");
    dialogBox.setAnimationEnabled(true);
    final Button closeButton = new Button("Close");
    // We can set the id of a widget by accessing its Element
    closeButton.getElement().setId("closeButton");
    final Label textToServerLabel = new Label();
    final HTML serverResponseLabel = new HTML();
    VerticalPanel dialogVPanel = new VerticalPanel();
    dialogVPanel.addStyleName("dialogVPanel");
    dialogVPanel.add(new HTML("<b>Sending name to the server:</b>"));
    dialogVPanel.add(textToServerLabel);
    dialogVPanel.add(new HTML("<br><b>Server replies:</b>"));
    dialogVPanel.add(serverResponseLabel);
    dialogVPanel.setHorizontalAlignment(VerticalPanel.ALIGN_RIGHT);
    dialogVPanel.add(closeButton);
    dialogBox.setWidget(dialogVPanel);

在中间添加标签和小部件以获得所需的对话框..