Gets the index of a given object in a collection.
Namespace: MindFusion.Common.Collections
File: IEnumerable.js
JavaScript Copy Code |
---|
function indexOfItem (obj, [fromIndex]) |
Type: Object
Object. The object to look for.
Type: Number
Number. The starting index to search from.
Type: Number
Number. The index of the object, or -1 if the object is not present in the collection.
The following code checks if the old items of a ListView instance, which have changed contain an item called item1:
JavaScript Copy Code |
---|
listView.selectionChanged.addEventListener(listSelectionChanged);
if( args.oldItems.contains(item1)) |