Home Reference Source
public class | source

BaseEvent

Extends:

TypedObject → BaseEvent

Indirect Subclass:

FlexDataGridItemEditEvent

Base class for all events using the Flexicious Event Dispatcher mechanism.

Constructor Summary

Public Constructor
public

constructor(type: *, bubbles: *, cancelable: *)

Member Summary

Public Members
public

Ignored property

public

Whether or not this event can be cancelled.

public

Has the default for this event been prevented

public

Type of this event.

Method Summary

Public Methods
public
public

Has the default for this event been prevented.

public

If this event is cancelable, then the default prevented flag is set to true.

public

If this event is cancelable, then the default prevented flag is set to true.

Inherited Summary

From class TypedObject
public

typeCache: {}

public
public

Returns a list of strings that represent the object hierarchy for this object.

public

Returns true if the class name to check is in the list of class names defined for this class.

Public Constructors

public constructor(type: *, bubbles: *, cancelable: *) source

Override:

TypedObject#constructor

Params:

NameTypeAttributeDescription
type *
bubbles *
cancelable *

Public Members

public bubbles: Boolean source

Ignored property

Properties:

NameTypeAttributeDescription
bubbles *

public cancelable: Boolean source

Whether or not this event can be cancelled.

Properties:

NameTypeAttributeDescription
cancelable *

public defaultPrevented: Boolean source

Has the default for this event been prevented

Properties:

NameTypeAttributeDescription
defaultPrevented *

public type: String source

Type of this event.

Properties:

NameTypeAttributeDescription
type *

Public Methods

public getClassNames(): string[] source

Returns a list of strings that represent the object hierarchy for this object.

Override:

TypedObject#getClassNames

Return:

string[]

public isDefaultPrevented(): Boolean source

Has the default for this event been prevented. This is true if the preventDefault method has been called.

Return:

Boolean

public preventDefault(): Boolean source

If this event is cancelable, then the default prevented flag is set to true.

Return:

Boolean

public stopPropagation(): Boolean source

If this event is cancelable, then the default prevented flag is set to true.

Return:

Boolean