示例#1
0
 protected void EventScheduler_RecurrenceExceptionCreated(object sender, RecurrenceExceptionCreatedEventArgs e)
 {
     if (!Utility.AppointmentsOverlap(e.ExceptionAppointment, EventScheduler))
     {
         return;
     }
     e.Cancel = true;
     ShowErrorMessage("Exception occured. You are trying disabled actions.");
 }
示例#2
0
 public void VaaScheduler_RecurrenceExceptionCreated(object sender, RecurrenceExceptionCreatedEventArgs e)
 {
     Response.Write("An exception with subject: " + e.ExceptionAppointment.Subject + " was created");
 }
示例#3
0
 protected void radcalendar_RecurrenceExceptionCreated(object sender, RecurrenceExceptionCreatedEventArgs e)
 {
 }