Class: OdinEvent<T>
Custom Event providing Odin Event Payload of a provided type.
Extends
Event
Type Parameters
• T
Implements
IOdinEvent
<T
>
Constructors
new OdinEvent()
new OdinEvent<
T
>(type
,payload
):OdinEvent
<T
>
Parameters
• type: string
• payload: T
Returns
OdinEvent
<T
>
Overrides
Event.constructor
Defined in
Odin/odin-typescript/lib/utils/odin-event-target.d.ts:15
Properties
AT_TARGET
readonly
AT_TARGET:2
Implementation of
Inherited from
Event.AT_TARGET
Defined in
dev-docu/node_modules/typescript/lib/lib.dom.d.ts:8226
bubbles
readonly
bubbles:boolean
Returns true or false depending on how event was initialized. True if event goes through its target's ancestors in reverse tree order, and false otherwise.
Implementation of
Inherited from
Event.bubbles
Defined in
dev-docu/node_modules/typescript/lib/lib.dom.d.ts:8121
BUBBLING_PHASE
readonly
BUBBLING_PHASE:3
Implementation of
Inherited from
Event.BUBBLING_PHASE
Defined in
dev-docu/node_modules/typescript/lib/lib.dom.d.ts:8227
cancelable
readonly
cancelable:boolean
Returns true or false depending on how event was initialized. Its return value does not always carry meaning, but true can indicate that part of the operation during which event was dispatched, can be canceled by invoking the preventDefault() method.
Implementation of
Inherited from
Event.cancelable
Defined in
dev-docu/node_modules/typescript/lib/lib.dom.d.ts:8133
cancelBubble
cancelBubble:
boolean
Deprecated
Implementation of
Inherited from
Event.cancelBubble
Defined in
dev-docu/node_modules/typescript/lib/lib.dom.d.ts:8127
CAPTURING_PHASE
readonly
CAPTURING_PHASE:1
Implementation of
Inherited from
Event.CAPTURING_PHASE
Defined in
dev-docu/node_modules/typescript/lib/lib.dom.d.ts:8225
composed
readonly
composed:boolean
Returns true or false depending on how event was initialized. True if event invokes listeners past a ShadowRoot node that is the root of its target, and false otherwise.
Implementation of
Inherited from
Event.composed
Defined in
dev-docu/node_modules/typescript/lib/lib.dom.d.ts:8139
currentTarget
readonly
currentTarget:EventTarget
Returns the object whose event listener's callback is currently being invoked.
Implementation of
Inherited from
Event.currentTarget
Defined in
dev-docu/node_modules/typescript/lib/lib.dom.d.ts:8145
defaultPrevented
readonly
defaultPrevented:boolean
Returns true if preventDefault() was invoked successfully to indicate cancelation, and false otherwise.
Implementation of
Inherited from
Event.defaultPrevented
Defined in
dev-docu/node_modules/typescript/lib/lib.dom.d.ts:8151
eventPhase
readonly
eventPhase:number
Returns the event's phase, which is one of NONE, CAPTURING_PHASE, AT_TARGET, and BUBBLING_PHASE.
Implementation of
Inherited from
Event.eventPhase
Defined in
dev-docu/node_modules/typescript/lib/lib.dom.d.ts:8157
isTrusted
readonly
isTrusted:boolean
Returns true if event was dispatched by the user agent, and false otherwise.
Implementation of
Inherited from
Event.isTrusted
Defined in
dev-docu/node_modules/typescript/lib/lib.dom.d.ts:8163
NONE
readonly
NONE:0
Implementation of
Inherited from
Event.NONE
Defined in
dev-docu/node_modules/typescript/lib/lib.dom.d.ts:8224
payload
readonly
payload:T
Custom payload of the event (see IOdin*Payload
interfaces).
Implementation of
Defined in
Odin/odin-typescript/lib/utils/odin-event-target.d.ts:14
returnValue
returnValue:
boolean
Deprecated
Implementation of
Inherited from
Event.returnValue
Defined in
dev-docu/node_modules/typescript/lib/lib.dom.d.ts:8169
srcElement
readonly
srcElement:EventTarget
Deprecated
Implementation of
Inherited from
Event.srcElement
Defined in
dev-docu/node_modules/typescript/lib/lib.dom.d.ts:8175
target
readonly
target:EventTarget
Returns the object to which event is dispatched (its target).
Implementation of
Inherited from
Event.target
Defined in
dev-docu/node_modules/typescript/lib/lib.dom.d.ts:8181
timeStamp
readonly
timeStamp:number
Returns the event's timestamp as the number of milliseconds measured relative to the time origin.
Implementation of
Inherited from
Event.timeStamp
Defined in
dev-docu/node_modules/typescript/lib/lib.dom.d.ts:8187
type
readonly
type:string
Returns the type of event, e.g. "click", "hashchange", or "submit".
Implementation of
Inherited from
Event.type
Defined in
dev-docu/node_modules/typescript/lib/lib.dom.d.ts:8193
AT_TARGET
readonly
static
AT_TARGET:2
Inherited from
Event.AT_TARGET
Defined in
dev-docu/node_modules/typescript/lib/lib.dom.d.ts:8235