打开另一个模态

时间:2017-11-03 10:53:29

标签: google-apps-script google-sheets modal-dialog

我在Google表格中使用Google App Script。单击按钮时,代码将进入以下功能:

function myButtonClicked(){
 const template = HtmlService
  .createTemplateFromFile('Index')
  .evaluate();

 const html = HtmlService
  .createHtmlOutput(template)
  .setWidth(500)
  .setHeight(500)
  .setTitle('MyTitle');
 SpreadsheetApp.getUi().showModalDialog(html, 'MyTitle');
}

我的表单包含多个具有onclick事件的输入。此事件会执行某些操作并在特定情况下显示消息。

通过以下功能显示消息:

SpreadsheetApp.getUi().alert('myMessage');

问题是:当最后一个出现时,包含我的表单的模态将被关闭。

如何在另一个模式上显示模态?

感谢。

0 个答案:

没有答案