我有一个显示html表单的模式。表单有一个按钮。 最初将模态设置为600x425的宽度。然后在运行时,如果按下按钮,它应该将模态从600x425调整为300x200。
如何使用Google Apps脚本
获取此功能function showPickerImages() {
var html = HtmlService
.createTemplateFromFile("MyHTMLForm")
.evaluate()
.addMetaTag("viewport", "width=device-width, initial-scale=1")
.setWidth(600)
.setHeight(425)
.setTitle("Resize demo")
.setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL);
SpreadsheetApp.getUi().showModalDialog(html, 'demo');
}
MyHTMLForm.html
<button onclick="resizeModalDialog()"></button>
答案 0 :(得分:1)
使用google.script.host.setWidth(width)
和setHeight
:
// resize modal window
function resizeModalDialog()
{
google.script.host.setWidth(300);
google.script.host.setHeight(200);
}