Static variables
staticinlineread onlyADD_ITEM:EventType<FlatCollectionEvent> = "addItem"
The FlatCollectionEvent.ADD_ITEM
event type is dispatched when an item is
added to a collection.
1.0.0
.See also:
staticinlineread onlyFILTER_CHANGE:EventType<FlatCollectionEvent> = "filterChange"
The FlatCollectionEvent.FILTER_CHANGE
event type is dispatched when a
filter function has been applied to or removed from a collection.
1.0.0
.See also:
staticinlineread onlyREMOVE_ALL:EventType<FlatCollectionEvent> = "removeAll"
The FlatCollectionEvent.REMOVE_ALL
event type is dispatched when all
items are removed from the collection simulatanously by calling
removeAll()
on the collection.
1.0.0
.See also:
staticinlineread onlyREMOVE_ITEM:EventType<FlatCollectionEvent> = "removeItem"
The FlatCollectionEvent.REMOVE_ITEM
event type is dispatched when an item
is removed from a collection.
1.0.0
.See also:
staticinlineread onlyREPLACE_ITEM:EventType<FlatCollectionEvent> = "replaceItem"
The FlatCollectionEvent.REPLACE_ITEM
event type is dispatched when an item
is replaced in a collection.
1.0.0
.See also:
staticinlineread onlyRESET:EventType<FlatCollectionEvent> = "reset"
The FlatCollectionEvent.RESET
event type is dispatched when the entire
underlying data structure is replaced.
1.0.0
.staticinlineread onlySORT_CHANGE:EventType<FlatCollectionEvent> = "sortChange"
The FlatCollectionEvent.SORT_CHANGE
event type is dispatched when a
sort compare function has been applied to or removed from a collection.
1.0.0
.See also:
staticinlineread onlyUPDATE_ALL:EventType<FlatCollectionEvent> = "updateAll"
The FlatCollectionEvent.UPDATE_ALL
event type is dispatched when the
updateAll()
method is called on the collection.
1.0.0
.See also:
staticinlineread onlyUPDATE_ITEM:EventType<FlatCollectionEvent> = "updateItem"
The FlatCollectionEvent.UPDATE_ITEM
event type is dispatched when the
updateAt()
method is called on the collection.
1.0.0
.See also:
Static methods
staticdispatch(dispatcher:IEventDispatcher, type:String, index:Int, ?addedItem:Dynamic, ?removedItem:Dynamic, bubbles:Bool = false, cancelable:Bool = false):Bool
Dispatches a pooled event with the specified properties.
FlatCollectionEvent.dispatch(component, Event.ADD_ITEM, 0, item);
1.0.0
.Constructor
new(type:String, index:Int, ?addedItem:Dynamic, ?removedItem:Dynamic, bubbles:Bool = false, cancelable:Bool = false)
Variables
addedItem:Dynamic
The item that was added to the collection, or null
, if no item was
added.
1.0.0
.index:Int
The index of the item in the collection that is associated with this
event, or null
, if there is no specific item.
1.0.0
.removedItem:Dynamic
The item that was removed from the collection, or null
, if no item was
removed.
1.0.0
.