Gets the type of action that is modifying 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 itemModifying event of a calendar. In the handler method we check if the modifying action was "Resize". If yes, we cancel the action e.g. the user was not able to modify this event.
JavaScript
Copy Code
|
|---|
// attach a handler - when a calendar item is being modified. function handleItemModifying(sender, args) { |
See Also