This question is locked. New answers and comments are not allowed.
Hello,
I have a question about the CreateNew method of the ScheduleViewDialogHostFactory. My override is:
I want to create custom confirmation dialogs for recurring appointments (with custom viewmodel implementations, which handle confirmations and cancellations in a specific fashion). What I can't figure out is: how do I know, which action (delete/resize/edit) was invoked, when the CreateNew method is in scope? All that I can retrieve from the DialogType enumeration is, that it is a recurring appointment (hence the DialogType.RecurrenceChoiceDialog flag).
Any help would be greatly appreciated,
Thanks.
I have a question about the CreateNew method of the ScheduleViewDialogHostFactory. My override is:
protected
override
IScheduleViewDialogHost CreateNew(ScheduleViewBase scheduleView,
DialogType dialogType)
{
if
(dialogType == DialogType.RecurrenceChoiceDialog)
{
// ?
}
return
base
.CreateNew(scheduleView, dialogType);
}
I want to create custom confirmation dialogs for recurring appointments (with custom viewmodel implementations, which handle confirmations and cancellations in a specific fashion). What I can't figure out is: how do I know, which action (delete/resize/edit) was invoked, when the CreateNew method is in scope? All that I can retrieve from the DialogType enumeration is, that it is a recurring appointment (hence the DialogType.RecurrenceChoiceDialog flag).
Any help would be greatly appreciated,
Thanks.