Interface DatasetEvents<IdType>

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.

Emitted when items changed (removed or added).

Generated using TypeDoc