We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

How to get the "recurring-dialog" results?

dialog.png

I can't figure out how to access the dialog results from this window in the events below:

Schedule.AppointmentDeleting += Schedule_AppointmentDeleting;

Schedule.AppointmentEditorClosing += Schedule_AppointmentEditorClosing;


Regards
Henrik



1 Reply 1 reply marked as answer

MS Muniappan Subramanian Syncfusion Team April 17, 2023 10:54 AM UTC

Henrik,

According to the shared details, we have checked your requirement. You can get the recurrence use edit mode details by using the “RecurringAppointmentEditMode” property from the AppointmentDeleting event and AppointmentEditorOpening event.


Code Snippet

private void Schedule_AppointmentEditorOpening(object sender, AppointmentEditorOpeningEventArgs e)

{

    var recurringAppointmentEditMode = e.RecurringAppointmentEditMode;

}

 

private void Schedule_AppointmentDeleting(object sender, AppointmentDeletingEventArgs e)

{

    var recurringAppointmentEditMode = e.RecurringAppointmentEditMode;

}


The current implementation of the WPF Scheduler does not have support to get the recurrence editing dialog details in the “AppointmentEditorClosing” event.


Marked as answer
Loader.
Live Chat Icon For mobile
Up arrow icon