Events fired by a DataTableCollection.

interface DataTableCollectionEvents {
    changed: CollectionChangedEvent<DataTable>;
    "data-table-clicked": { tableId: string };
    "data-table-focus-changed": { focusedTableId: undefined | string };
    destroyed: void;
    "selection-changed": CollectionChangedEvent<string>;
}

Properties

Emitted if collection is changed.

"data-table-clicked": { tableId: string }

Emitted when a data-table is clicked

"data-table-focus-changed": { focusedTableId: undefined | string }

Emitted when a data-table is focused/unfocused

destroyed: void

Emitted when the instance is destroyed.

"selection-changed": CollectionChangedEvent<string>

Emitted if the selection is changed.