Interface DataTableCollectionEvents

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

Type declaration

  • tableId: string
data-table-focus-changed: {
    focusedTableId: undefined | string;
}

Emitted when a data-table is focused/unfocused

Type declaration

  • focusedTableId: undefined | string
destroyed: void

Emitted when the instance is destroyed.

selection-changed: CollectionChangedEvent<string>

Emitted if the selection is changed.

Generated using TypeDoc