The events fired by a Dataset.

interface DatasetEvents<IdType> {
    destroyed: void;
    "items-changed": CollectionChangedEvent<IdType>;
}

Type Parameters

  • IdType

Properties

destroyed: void

Emitted when the dataset is destroyed.

"items-changed": CollectionChangedEvent<IdType>

Emitted when items changed (removed or added).