Status Update
Comments
ko...@gmail.com <ko...@gmail.com> #2
Thank you for reporting this issue, I've been able to replicate the problem. As a workaround you can use SpreadsheetApp.toast() while troubleshooting to see certain values.
[Deleted User] <[Deleted User]> #3
Please advise. I'm trying to troubleshoot values in a loop. spreadsheet. Toast doesn't appear.
Chrome browser on Win7
Chrome browser on Win7
[Deleted User] <[Deleted User]> #4
This is a video illustrating the logger bug using the sample google script that is created when starting a new script in a new spreadsheet.
http://screencast.com/t/HvZpFyZ2o2
ek...@google.com <ek...@google.com>
[Deleted User] <[Deleted User]> #6
please, any one can guide me how can i use console.log() in google script editor
when i call function() from google spreadsheet.
when i call function() from google spreadsheet.
Description
1. Create a new spreadsheet.
2. Go into script editor.
3. Create "onEdit" fuction (see below)
function onEdit(e)
{
Logger.log("onEdit was called");
Browser.msgBox("onEdit was called");
}
4. save function.
5. Go to spreadsheet and change any cell
What is the expected output? What do you see instead?
Expected output:
1. message written to logger "onEdit was called".
2. Message displayed in pop-up dialog saying "onEdit was called"
What did I see:
1. used cntl-shift_cap to view logger.
message that Log was not empty did not appear.
But no text was displayed.
2. Received pop-up in spreadsheet. This proves that
the onEdit routine was called.
On which browser & OS?
Windows 7 - Chrome
Please provide any additional information below.
Tried it on two different spreadsheets. Received
the same output.