@serenity-is/sleekgrid / EventData
An event object for passing data to event handlers and letting them control propagation.
This is pretty much identical to how W3C and jQuery implement events.
new EventData():
EventData
isImmediatePropagationStopped():
boolean
Returns whether stopImmediatePropagation was called on this event object.\
boolean
IEventData
.isImmediatePropagationStopped
isPropagationStopped():
boolean
Returns whether stopPropagation was called on this event object.
boolean
IEventData
.isPropagationStopped
stopImmediatePropagation():
void
Prevents the rest of the handlers from being executed.
void
IEventData
.stopImmediatePropagation
stopPropagation():
void
Stops event from propagating up the DOM tree.
void