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

Rise an event at StartTime and EndTime of appointments

Is there any event I can register to, to get notifications at StartTime and EndTime of appointments?

3 Replies

JM Jeyasri M Syncfusion Team December 23, 2016 10:50 AM UTC

Hi Andrzej, 
 
Thanks for your interest in Syncfusion products. 
 
Your requirement can be achieved by using the appointment resizing, dragging and Schedule tapping events. 
 
Please refer the below User Guide document for more details. 
 
 
Regards, 
Jeyasri M. 



AN Andrzej December 24, 2016 06:39 AM UTC

Thanks for answer, however I probably did not explain my requirement clear enough.
I am looking for a notification event which would be fired when real world time(on local user's machine) equals StartTime or EndTime of an appointment.  
Something based on Schedule's "internal timer", like in reminder function.


JM Jeyasri M Syncfusion Team December 27, 2016 12:08 PM UTC

Hi Andrzej, 
 
As of now you can use Schedule Reminder feature to remind an appointment with specified time and once appointment’s reminder time enabled you can use the ReminderOpening event while reminder appointment get popup. 
 
Please refer the below User Guide documentation for more details. 
 
UG Link: 
 
 
Based on your requirement we have modified the Customization Demo sample and please find the sample from below link. 
 
In the above sample we have added the reminder appointment and ReminderOpening event get triggered while reminder appointment will popup. 
 
    Schedule.ReminderOpening += Schedule_ReminderOpening; 
 
  private void Schedule_ReminderOpening(object sender, ReminderControlOpeningEventArgs e) 
       
            var reminderStartTime = ((e.RemindAppCollection as ScheduleAppointmentCollection)[0] as Appointment).StartTime; 
        } 
 
Regards, 
Jeyasri M. 




Loader.
Up arrow icon