Hi,
I'm handling series without exceptions.
So in other words - the user always edits the whole series (or a single appointment if no recurrence is defined).
I found a thread here how to suppress the "Series or single appointment" dialog on editing.
It suppresses the dialog - and shows the edit form for series - this is fine, but it also suppresses the delete confirmation.
I found out how to "filter between edit and delete" - but I have no idea how to go on.
What I want is a "normal" confirmation dialog "Do you want to delete the series"???
Here my code so far....
It suppresses the selection for edit - but shows it for delete.
Manfred
I'm handling series without exceptions.
So in other words - the user always edits the whole series (or a single appointment if no recurrence is defined).
I found a thread here how to suppress the "Series or single appointment" dialog on editing.
It suppresses the dialog - and shows the edit form for series - this is fine, but it also suppresses the delete confirmation.
I found out how to "filter between edit and delete" - but I have no idea how to go on.
What I want is a "normal" confirmation dialog "Do you want to delete the series"???
Here my code so far....
function RecurrenceActionDialogShowingHandler(sender, args) { if (args._recurrenceAction == 1) { args.set_cancel(true); } //Edit this instance only: //args.set_editSeries(false); //Edit the entire series: args.set_editSeries(true);}It suppresses the selection for edit - but shows it for delete.
Manfred
