Events dispatched by hierarchical collections.
1.0.0
.See also:
feathers.data.IHierarhicalCollection
Static variables
staticinlineread onlyADD_ITEM:EventType<HierarchicalCollectionEvent> = "addItem"
The HierarchicalCollectionEvent.ADD_ITEM
event type is dispatched when
an item is added to a collection.
1.0.0
.See also:
staticinlineread onlyFILTER_CHANGE:EventType<HierarchicalCollectionEvent> = "filterChange"
The HierarchicalCollectionEvent.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<HierarchicalCollectionEvent> = "removeAll"
The HierarchicalCollectionEvent.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<HierarchicalCollectionEvent> = "removeItem"
The HierarchicalCollectionEvent.REMOVE_ITEM
event type is dispatched
when an item is removed from a collection.
1.0.0
.See also:
staticinlineread onlyREPLACE_ITEM:EventType<HierarchicalCollectionEvent> = "replaceItem"
The HierarchicalCollectionEvent.REPLACE_ITEM
event type is dispatched
when an item is replaced in a collection.
1.0.0
.See also:
staticinlineread onlyRESET:EventType<HierarchicalCollectionEvent> = "reset"
The HierarchicalCollectionEvent.RESET
event type is dispatched when
the entire underlying data structure is replaced.
1.0.0
.staticinlineread onlySORT_CHANGE:EventType<HierarchicalCollectionEvent> = "sortChange"
The HierarchicalCollectionEvent.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<HierarchicalCollectionEvent> = "updateAll"
The HierarchicalCollectionEvent.UPDATE_ALL
event type is dispatched
when the updateAll()
method is called on the collection.
1.0.0
.See also:
staticinlineread onlyUPDATE_ITEM:EventType<HierarchicalCollectionEvent> = "updateItem"
The HierarchicalCollectionEvent.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, location:Array<Int>, ?addedItem:Dynamic, ?removedItem:Dynamic, bubbles:Bool = false, cancelable:Bool = false):Bool
Dispatches a pooled event with the specified properties.
HierarchicalCollectionEvent.dispatch(component, Event.ADD_ITEM, 0, item);
1.0.0
.Constructor
new(type:String, location:Array<Int>, ?addedItem:Dynamic, ?removedItem:Dynamic, bubbles:Bool = false, cancelable:Bool = false)
Creates a new HierarchicalCollectionEvent
object with the given arguments.
1.0.0
.See also:
Variables
addedItem:Dynamic
The item that was added to the collection, or null
, if no item was
added.
1.0.0
.location:Array<Int>
The location 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
.