Maximize productivity with
30% off* for a limited time
using BOOSTDEV30.
Includes 3- and 5-packs.
*Some exclusions may apply.New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.it is possible to add a UI Confirm box before to complete a drag & drop meeting action over the SFSchedule? I tried many ways to do that but I can not get the expected result. Something like that
//....
private void Handle_AppointmentDrop(object sender, Syncfusion.SfSchedule.XForms.AppointmentDropEventArgs e)
{
e.Cancel = MyConfirmDialogRoutine().Result //because is an Async Operation and the event handler only is Sync
}
[C#]
private async void Schedule_AppointmentDrop(object sender, AppointmentDropEventArgs e)
{
bool CanDrop = await contentPage.DisplayAlert("Drop Appointment", "Would you like to drop the appointment", "Yes", "No");
if (!CanDrop)
{
RepositioningAppointment(e.Appointment as ScheduleAppointment);
}
} |
This works for me . Thanks !