I'm trying to display a custom message, but window.alert()
is restricted in OfficeJS.
I have found a solution which suggests using app.showNotification(title, message);
Office.initialize = function (reason) {
$(document).ready(function () {
app.showNotification("Title For the Notification", "test");
});
});
Browser throws
"app is undefined error".
Which module am I missing ?