Gets the type of action that has modified the item.
Namespace: MindFusion.Scheduling
Assembly: EventArgs.js
SyntaxJavaScript
Copy Code
|
|---|
get action() {} |
One of the ItemModifyAction enumeration values.
ExampleThe following example attaches a handler to the itemModified event of a calendar. In the handler method we check if the item was dragged to another location. If so, we save its previous start date.
JavaScript
Copy Code
|
|---|
// attach a handler - when a calendar item is modified. function handleItemModified(sender, args) { |
See Also