使用GAS

时间:2017-11-24 10:38:33

标签: javascript html google-apps-script google-sheets

我有一个显示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>

enter image description here

1 个答案:

答案 0 :(得分:1)

使用google.script.host.setWidth(width)setHeight

// resize modal window
function resizeModalDialog()
{
  google.script.host.setWidth(300);
  google.script.host.setHeight(200);
}