Events dispatched by Feathers UI components.
1.0.0
.Static variables
staticinlineread onlyCLOSING:EventType<FeathersEvent> = "closing"
The FeathersEvent.OPENING
event type is dispatched when a component
starts to close.
1.0.0
.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.
1.0.0
.See also:
staticinlineread onlyDISABLE:EventType<FeathersEvent> = "disable"
The FeathersEvent.DISABLE
event type is dispatched when the enabled
property of a component is set to false
.
1.0.0
.staticinlineread onlyENABLE:EventType<FeathersEvent> = "enable"
The FeathersEvent.ENABLE
event type is dispatched when the enabled
property of a component is set to true
.
1.0.0
.staticinlineread onlyINITIALIZE:EventType<FeathersEvent> = "initialize"
The FeathersEvent.INITIALIZE
event type is dispatched when a Feathers
component has finished running its initialize()
function.
1.0.0
.See also:
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.
1.0.0
.See also:
staticinlineread onlyOPENING:EventType<FeathersEvent> = "opening"
The FeathersEvent.OPENING
event type is dispatched when a component
starts to open.
1.0.0
.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.
1.0.0
.See also:
Static methods
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);
1.0.0
.