我正在創建一個使用ExecuteFunction的參數的新約會窗體。它的工作對Outlook Addin displayNewAppointmentForm函數不適用於AppointmentOrganizerCommandSurface擴展點
AppointmentAttendeeCommandSurface
擴展點,但不是
AppointmentOrganizerCommandSurface
擴展點的作品。我在this site找不到它。兩個擴展點上是否可能有displayNewAppointmentForm
?
function openAppFrm(event)
{
var start = new Date();
var end = new Date();
end.setHours(start.getHours() + 1);
Office.context.mailbox.displayNewAppointmentForm(
{
requiredAttendees: ['[email protected]', '[email protected]'],
optionalAttendees: ['[email protected]'],
start: start,
end: end,
location: 'Colombo Office',
subject: 'Test Meeting',
body: 'Hello World!'
});
event.completed();
}
嗨!感謝您讓我們知道這一點。發現這個問題的平臺是什麼?你的加載項有什麼權限? –
@OutlookWebAddinsTeam我在OWA和outlook for windows平臺上遇到這個問題。我在Addin中給出了「ReadWriteItem」權限。 –