Occurs just before an item is added, removed, changed, moved, or the entire list is refreshed.
Namespace: MindFusion.Common.Collections
File: ObservableCollection.js
JavaScript Copy Code |
---|
EventDispatcher collectionChanging |
The event handler method receives the following arguments:
sender
An ObservableCollection instance, which is the source of the event. This object will be passed to the handler function as the first argument.
args
A NotifyCollectionChangingEventArgs instance, which contains event data. This object will be passed to the handler function as the second argument.
The cancel property of NotifyCollectionChangingEventArgs allows you to stop the action.
The following code handles the collectionChanging event on the items collection of a ListView object that is of type ObservableCollection:
JavaScript Copy Code |
---|
var nodeList = new ui.ListView(document.getElementById("nodeList")); nodeList.items.collectionChanging.addEventListener(itemsCollectionChangingEventHandler);
|