jQuery/JS Common - Object Structures - EventObject - Methods
Methods that control the event.
isDefaultPrevented()
Checks if the preventDefault() method was called on this event object.
true if preventDefault() was called, false otherwise.
isImmediatePropagationStopped()
Checks if the stopImmediatePropagation() method was called on this event object.
true if stopImmediatePropagation() was called, false otherwise.
isPropagationStopped()
Checks if the stopPropagation() method was called on this event object.
true if stopPropagation() was called, false otherwise.
stopImmediatePropagation()
Stops the event's propagation up the DOM tree, preventing the rest of the handlers from being executed.
See Also
stopPropagation()
Stops the event's propagation up the DOM tree, keeping parent handlers unnotified of the event.
See Also
If you have technical questions, please create a support ticket in the DevExpress Support Center.