2017-07-18 1 views
1

Ich arbeite an der Erstellung eines neuen Terminformulars mit Parametern mit ExecuteFunction. Es funktioniert aufOutlook Addin displayNewAppointmentForm Funktion funktioniert nicht in AppointmentOrganizerCommandSurface Erweiterungspunkt

AppointmentAttendeeCommandSurface

Erweiterungspunkt, aber nicht funktioniert auf

AppointmentOrganizerCommandSurface

Erweiterungspunkt.

Ich konnte es nicht auf this site finden. Ist es möglich displayNewAppointmentForm an beiden Erweiterungspunkten?

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(); 
} 
+0

Hallo! Danke, dass Sie uns darüber informiert haben. Auf welcher Plattform wird dieses Problem gefunden? Welche Berechtigungen hat Ihr Add-In? –

+0

@OutlookWebAddinsTeam Ich bekomme dieses Problem auf OWA und Outlook für Windows-Plattformen. Ich habe die "ReadWriteItem" -Erlaubnis in Addin gegeben. –

Antwort

Verwandte Themen