Gets the Item that was modified.
Namespace: MindFusion.Scheduling
File: EventArgs.js
SyntaxJavaScript
Copy Code
|
|---|
get item() {} |
Item. The Item that was modified.
ExampleThe following example attaches a handler to the itemModified event of a calendar. In the handler method we check if the subject of the this item is "Conference". If it is, we cance the action e.g. the user was not able to modify the item.
JavaScript
Copy Code
|
|---|
var p = MindFusion.Scheduling; // attach a handler - when a calendar item is being modified. function handleItemModifying(sender, args) { |
See Also