Raised when a selection of items changes.
Namespace: MindFusion.Scheduling
File: Calendar.js
SyntaxJavaScript
Copy Code
|
|---|
EventDispatcher itemSelectionChanged |
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
A NotifyCollectionChangedEventArgs instance, which contains event data. This object will be passed to the handler function as the second argument.
ExampleThe following code shows you how to attach an event handler to the itemSelectionChanged event.
JavaScript
Copy Code
|
|---|
var p = MindFusion.Scheduling; // attach a handler - the selection of items has changed. function handleItemitemSelectionChanged(sender, args) { |
See Also