刚刚在我的Google电子表格应用中实施了一项提醒,它可以通过浏览器运行,但它无法在Google移动应用上运行。
在我正在使用的代码下面:
function showAlert(currentValue) {
var ui = SpreadsheetApp.getUi();
var result = ui.alert(
'WARNING',
'You are modifying the cell with value ' + currentValue + ', do you want to continue?',
ui.ButtonSet.YES_NO);
// Process the user's response.
if (result == ui.Button.YES) {
// User clicked "Yes".
return true;
} else {
// User clicked "No" or X in the title bar.
return false;
}
}
有任何解决方案可以让它在移动应用程序上运行,或任何其他类似的解决方案在尝试修改非空单元格时警告用户?
感谢。