Raised when the calendar's schedule has changed.
Namespace: MindFusion.Scheduling
File: Calendar.js
The 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 EventArgs instance, which contains event data. This object will be passed to the handler function as the second argument.
The following code shows you how to handle the scheduleChanged event:
JavaScript Copy Code |
---|
// attach a handler - when the schedule has changed function handleScheduleChanged(sender, args) { |