对话框的示例代码弄得一团糟

时间:2013-06-19 06:14:25

标签: google-apps-script

我做了:

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;
}

部署并获得: enter image description here

这显然不是我的预期。 我做错了什么?

1 个答案:

答案 0 :(得分:0)

别担心,.createDialogBox()似乎已被打破。将您的参赛作品写入issue tracker我会在您的参赛作品出现后立即加注。

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