Occurs when an item is added, removed, changed, moved, or the entire list is refreshed.
Namespace: MindFusion.Common.Collections
File: ObservableCollection.js
SyntaxJavaScript
Copy Code
|
|---|
EventDispatcher collectionChanged |
Event DataThe 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 NotifyCollectionChangedEventArgs instance, which contains event data. This object will be passed to the handler function as the second argument.
ExampleThe following code handles the collectionChanged event on the collection of items of a ListView object that is of type ObservableCollection:
JavaScript
Copy Code
|
|---|
var nodeList = new ui.ListView(document.getElementById("nodeList")); nodeList.items.collectionChanged.addEventListener(itemsCollectionChangedEventHandler);
|
See Also