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