-2

我做了:

function doGet() {
var app = UiApp.createApplication();
// Create a dialog box.
var dialog = app.createDialogBox();
// Add a label to the dialog and set the dimensions and position.
dialog.setPopupPosition(100, 100).setSize(500, 500).show();
// Show the dialog. Note that it does not have to be "added" to the UiInstance.
dialog.show();
return app;
}

部署并获得: 在此处输入图像描述

这显然不是我所期望的。我究竟做错了什么?

4

1 回答 1

0

别担心,.createDialogBox()好像坏了。将您的条目写入问题跟踪器,一旦您的条目出现在那里,我会立即为它加注星标。

我使用PopupPanel它工作正常并提供相同的功能减去可拖动性

于 2013-06-19T09:35:20.190 回答