User Guide
386 Components Dictionary
When this property is set to true, operations performed at the collection level and item level
are logged. Collection-level changes include the addition and removal of items from the
collection. Item-level changes include property changes made to items and method calls made
on items by means of the DataSet component.
Example
The following example disables logging for the DataSet object named userData.
user_ds.logChanges = false;
See also
DataSet.deltaPacket
DataSet.modelChanged
Availability
Flash Player 7.
Edition
Flash MX Professional 2004.
Description
Usage 1:
var listenerObject:Object = new Object();
listenerObject.modelChanged = function (eventObj:Object):Void {
// ...
};
dataSetInstance.addEventListener("modelChanged", listenerObject);
Usage 2:
on (modelChanged) {
// ...
}
Description
Event; broadcast when the collection changes in some way—for example, when items are
removed or added to the collection, when the value of an item’s property changes, or when the
collection is filtered or sorted.