0

什么时候 **

窗口警报

**在gwt中使用,弹出一个窗口有消息,我要**

更改标题

**那个窗口的,请帮忙,因为我急需它

4

2 回答 2

0

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

使用PopupPanelDecoratedPopupPanelDialogBox

于 2013-02-06T05:07:58.653 回答
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);

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

于 2013-02-06T06:01:51.823 回答