ASPxClientSchedulerStorageReminderAlertEventArgs.alertNotifications Property
Returns an array of currently triggered reminders.
Declaration
alertNotifications: ASPxClientReminderAlertNotification[]
Property Value
Type | Description |
---|---|
ASPxClientReminderAlertNotification[] | An array of ASPxClientReminderAlertNotification objects. |
Remarks
The ASPxClientSchedulerStorageControl.ReminderAlert event is raised when a reminder alert is invoked. Note that multiple reminders can trigger at the same time. Use the alertNotifications property to access these reminders. Each notification is represented by a ASPxClientReminderAlertNotification object.
function OnReminderAlert(s, e) {
e.alertNotifications.forEach(function (notification) {
ShowHint(notification);
});
}
Online Demo
ASPxScheduler - Storage Control
See Also