jQuery/JS Common - Object Structures - EventObject - Methods
Methods that control the event.
isDefaultPrevented()
Checks if the preventDefault() method was called on this event object.
Return Value:
true if preventDefault() was called, false otherwise.
isImmediatePropagationStopped()
Checks if the stopImmediatePropagation() method was called on this event object.
Return Value:
true if stopImmediatePropagation() was called, false otherwise.
isPropagationStopped()
Checks if the stopPropagation() method was called on this event object.
Return Value:
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
Feel free to share topic-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you for the feedback!
If you have technical questions, please create a support ticket in the DevExpress Support Center.