0

いつ **

Window.alert

** は gwt で使用され、ウィンドウがポップアップし、次のメッセージが表示されます , I want to **

タイトルを変更する

そのウィンドウの ** 、至急必要なので助けてください

4

2 に答える 2

0

Window.alert() は、[OK] ボタンを含むネイティブ ダイアログ ボックスを開きます。タイトルを変更することはできません。

PopupPanelまたはDecoratedPopupPanelまたはDialogBoxを使用する

于 2013-02-06T05:07:58.653 に答える
0

そのタイトルを変更することはできません..そのためには、別の代替案を検討する必要があります..

以下はそのうちの1つです。

これは、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 に答える