New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
ReminderDismiss
The ReminderDismiss event occurs when a reminder has been dismissed.
The event arguments contain:
-
Reminder - The dismissed reminder
-
Appointment - The original appointment with non-modified reminders
-
ModifiedAppointment - The modified appointment with updated reminders
The operation can be cancelled by setting the Cancel property of the event arguments to true.
C#
protected void RadScheduler1_ReminderDismiss(object sender, ReminderDismissEventArgs e)
{
e.Cancel = true;
}