Microsoft 365 and Office | Development | Other
Building custom solutions that extend, automate, and integrate Microsoft 365 apps.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
i add the handler 'RecurrenceChanged', and when i change the recurrence will trigger correctly.
But when i click the remove button, it will print nothing.
Here is the code.
Office.onReady(() => {
isOfficeInitialized = true;
render(App);
}).then(() => {
Office.context.mailbox.item.addHandlerAsync(
Office.EventType.RecurrenceChanged,
(eventArgs) => {
console.log('eventArgs', eventArgs);
},
(result) => {
console.log('result', result);
}
);
});
The ideal result:
When i click the remove btn, i can know it and do something callback after it.
Building custom solutions that extend, automate, and integrate Microsoft 365 apps.