我做了:
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;
}
部署并获得:
这显然不是我的预期。 我做错了什么?
答案 0 :(得分:0)
别担心,.createDialogBox()
似乎已被打破。将您的参赛作品写入issue tracker我会在您的参赛作品出现后立即加注。
我使用PopupPanel
工作正常,并提供相同的功能减去可拖动性