html弹出谷歌脚本.run适用于我,但不适用于其他复制工作簿的人



我有一个菜单项,它加载一个无模式对话框,该对话框调用一个html文件,要求用户单击一个单元格,然后单击"确定"。一旦用户单击了"确定",它应该使用google.script.run在我的code.gs文件中运行一个函数。当我在我的帐户上执行此操作时,一切都能无缝工作,但当用户复制工作簿并尝试执行时,此时将打开无模式对话框,但当单击"确定"时,google.script.run部分不起作用。";ok";按钮看起来像是被点击了一样,对话框并没有关闭,也没有发生任何其他事情。

HTML文件

<!DOCTYPE html>
<html>
<head>
<!-- Current Version 5.8.21 -->
<base target="_top">
</head>
<body>
<p>Select Cell for New Step, then Click OK."</p>
<input type="button" class="button" value="OK" onclick="google.script.run.znewStep();">
</body>
</html>

那么这就是它调用的代码:

function znewStep() {
var spreadsheet = SpreadsheetApp.getActive();
spreadsheet.getCurrentCell().offset(0, 0).activate();
spreadsheet.getCurrentCell().offset(-1, 0, 50, 2).copyTo(spreadsheet.getActiveRange(), SpreadsheetApp.CopyPasteType.PASTE_NORMAL, false);
spreadsheet.getCurrentCell().offset(0, 0).activate();
var newStep =  SpreadsheetApp.getUi().prompt("Please enter new step:").getResponseText();
spreadsheet.getCurrentCell().setValue(newStep);
spreadsheet.getCurrentCell().offset(1, 0).activate();
};

就像我说的,对我来说一切都很好,但当工作簿被其他人复制时,它就不起作用了。

此脚本将单元格选择和值条目组合在html无模式对话框中。因此,您不再需要模态提示了。

GS:

如果你以这种方式运行它,那么你甚至不需要模态提示,他们只需在html对话框中输入数据,然后按ok

function znewStep(newStep) {
try {
var spreadsheet = SpreadsheetApp.getActive();
spreadsheet.getCurrentCell().offset(0, 0).activate();
spreadsheet.getCurrentCell().offset(-1, 0, 5, 2).copyTo(spreadsheet.getActiveRange(), SpreadsheetApp.CopyPasteType.PASTE_NORMAL, false);
spreadsheet.getCurrentCell().offset(0, 0).activate();
spreadsheet.getCurrentCell().setValue(newStep);
spreadsheet.getCurrentCell().offset(1, 0).activate();
showMyDialog();
}
catch (e) {
SpreadsheetApp.getUi().alert(e);//alerts users to picking too small of a row number 
}
};

function showMyDialog() {
SpreadsheetApp.getUi().showModelessDialog(HtmlService.createHtmlOutputFromFile('ah1'),'Step');//ah1.html is the name of the file I am using
}

HTML:

<!DOCTYPE html>
<html>
<head>
<base target="_top">
</head>
<body>
<p>Select Cell for New Step and enter value then Click OK.</p>
<input type="text" id="txt1"/>
<input type="button" class="button" value="OK" onclick="getNewStep();">
<script>
function getNewStep() {
let v = document.getElementById('txt1').value;
google.script.run.znewStep(v);//send the new value to the znewStep function now
google.script.host.close();
}
</script>
</body>
</html>

但看起来你甚至不需要对话框。

相关内容

  • 没有找到相关文章

最新更新