Raised when an item remider is triggered.
Namespace: MindFusion.Scheduling
Assembly: Calendar.js
SyntaxJavaScript
Copy Code
|
|---|
EventDispatcher itemReminderTriggered |
Event DataThe event handler method receives the following arguments:
sender
A Calendar instance, which is the source of the event. This object will be passed to the handler function as the first argument.
args
An ItemEventArgs instance, which contains event data. This object will be passed to the handler function as the second argument.
ExampleThe following example attaches a handler to the itemReminderTriggered event of a calendar. In the handler method we check if the event starts after 19 o'clock.
JavaScript
Copy Code
|
|---|
var p = MindFusion.Scheduling; // attach a handler - when the reminder of a calendar item is triggered. function handleItemReminderTriggered(sender, args) { |
See Also