We have an add-in for Office Apps - using the compose form on Outlook appointments in the calendar.
Because finally the office.js add-ins support for Outlook for Mac is out as written here, I have some questions:
- How can I debug the JS in the add-in side pane in Outlook for Mac? Since the behavior is sometimes different to Outlook Web
Office.context.mailbox.item.body.setAsync(newBody, { coercionType: Office.CoercionType.Html }, callback)
seems to do nothing, only forOffice.CoercionType.Text
it seems to work- Is it possible to open a web page in the browser instead of a modal window? Because
window.open(url, target, features)
opens a modal window on top of the appointment, which is again different behavior to Outlook Web Client - It looks like JS is much slower in Outlook for Mac