--
You received this message because you are subscribed to the Google Groups "Google Apps Script Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-apps-script-c...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-apps-script-community/71d1fce1-0929-4a6c-984c-a11d041b7119n%40googlegroups.com.
This is a simple trigger. So no need to setup the trigger manually as you have done. Just naming the function onEdit is enough.
Add in some UI to validate that it is doing something.
Add the following:
var ui = SpreadsheetApp.getUi();
ui.alert(“Trigger invoked”);
put these two lines right after the function declaration.
--
You received this message because you are subscribed to the Google Groups "Google Apps Script Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-apps-script-c...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-apps-script-community/bc58612c-da09-4d6e-b18e-70ae5f1efff9n%40googlegroups.com.