Change RecurrenceID to Date type
Change RecurrenceID to Date type like SharePoint Standard functionality to solve the issue of deleting one occurrence of recurrent event
This commit is contained in:
parent
d7f623adbf
commit
4cecbce672
|
@ -176,7 +176,7 @@ export class Event extends React.Component<IEventProps, IEventState> {
|
|||
}
|
||||
else {
|
||||
if (this.state.eventData.EventType == '1') { // recurrence exception
|
||||
eventData.RecurrenceID = eventData.EventDate.toString();
|
||||
eventData.RecurrenceID = eventData.EventDate;
|
||||
eventData.MasterSeriesItemID = eventData.ID.toString();
|
||||
eventData.EventType = "4";
|
||||
eventData.fRecurrence = true;
|
||||
|
|
Loading…
Reference in New Issue