Events dispatched by Feathers UI components.

Available since

1.0.0

.

Static variables

@:value("creationComplete")staticinlineread onlyCREATION_COMPLETE:EventType<FeathersEvent> = "creationComplete"

The FeathersEvent.CREATION_COMPLETE event type is dispatched when a Feathers UI component has finished validating for the first time. A well-designed component will have created all of its children and it will be completely ready for user interaction.

Available since

1.0.0

.

See also:

@:value("initialize")staticinlineread onlyINITIALIZE:EventType<FeathersEvent> = "initialize"

The FeathersEvent.INITIALIZE event type is dispatched when a Feathers component has finished running its initialize() function.

Available since

1.0.0

.

See also:

@:value("layoutDataChange")staticinlineread onlyLAYOUT_DATA_CHANGE:EventType<FeathersEvent> = "layoutDataChange"

The FeathersEvent.LAYOUT_DATA_CHANGE event type is dispatched when a change to a Feathers UI component affects the layout of its parent container. For example, this event is dispatchedn when the includeInLayout or layoutData properties change.

Available since

1.0.0

.

See also:

@:value("stateChange")staticinlineread onlySTATE_CHANGE:EventType<FeathersEvent> = "stateChange"

The FeathersEvent.STATE_CHANGE event type is dispatched by classes that implement the IStateContext interface when their current state changes.

Available since

1.0.0

.

See also:

@:value("transitionCancel")staticinlineread onlyTRANSITION_CANCEL:EventType<FeathersEvent> = "transitionCancel"

The FeathersEvent.TRANSITION_CANCEL event type is dispatched when a navigator cancels a transition between items and has restored the previous item.

Available since

1.0.0

.

See also:

@:value("transitionComplete")staticinlineread onlyTRANSITION_COMPLETE:EventType<FeathersEvent> = "transitionComplete"

The FeathersEvent.TRANSITION_COMPLETE event type is dispatched when a navigator completes transitioning between items.

Available since

1.0.0

.

See also:

@:value("transitionStart")staticinlineread onlyTRANSITION_START:EventType<FeathersEvent> = "transitionStart"

The FeathersEvent.TRANSITION_START event type is dispatched when a navigator start transitioning between items.

Available since

1.0.0

.

See also:

Static methods

@:value({ cancelable : false, bubbles : false })staticdispatch(dispatcher:IEventDispatcher, type:String, bubbles:Bool = false, cancelable:Bool = false):Bool

Dispatches a pooled event with the specified properties.

FeathersEvent.dispatch(component, Event.CHANGE);
Available since

1.0.0

.

Constructor

@:value({ cancelable : false, bubbles : false })new(type:String, bubbles:Bool = false, cancelable:Bool = false)

Creates a new FeathersEvent object with the given arguments.

Available since

1.0.0

.

See also:

Methods