Packagefl.events
Classpublic class DataChangeType

The DataChangeType class defines constants for the DataChangeEvent.changeType event. These constants are used by the DataChangeEvent class to identify the type of change that was applied to the data in a list-based component such as a List, ComboBox, TileList, or DataGrid.

See also

DataChangeEvent.changeType


Public Constants
 ConstantDefined by
  ADD : String = "add"
[static] Items were added to the data provider.
DataChangeType
  CHANGE : String = "change"
[static] A change was made to the component data.
DataChangeType
  INVALIDATE : String = "invalidate"
[static] A change was made to the data contained in an item.
DataChangeType
  INVALIDATE_ALL : String = "invalidateAll"
[static] The data set is invalid.
DataChangeType
  REMOVE : String = "remove"
[static] Items were removed from the data provider.
DataChangeType
  REMOVE_ALL : String = "removeAll"
[static] All items were removed from the data provider.
DataChangeType
  REPLACE : String = "replace"
[static] The items in the data provider were replaced by new items.
DataChangeType
  SORT : String = "sort"
[static] The data provider was sorted.
DataChangeType
Constant detail
ADDconstant
public static const ADD:String = "add"

Items were added to the data provider.

CHANGEconstant 
public static const CHANGE:String = "change"

A change was made to the component data. This value does not affect the component data that it describes.

INVALIDATEconstant 
public static const INVALIDATE:String = "invalidate"

A change was made to the data contained in an item.

INVALIDATE_ALLconstant 
public static const INVALIDATE_ALL:String = "invalidateAll"

The data set is invalid.

REMOVEconstant 
public static const REMOVE:String = "remove"

Items were removed from the data provider.

REMOVE_ALLconstant 
public static const REMOVE_ALL:String = "removeAll"

All items were removed from the data provider.

REPLACEconstant 
public static const REPLACE:String = "replace"

The items in the data provider were replaced by new items.

SORTconstant 
public static const SORT:String = "sort"

The data provider was sorted. This constant is used to indicate a change in the order of the data, not a change in the data itself.