TableCellIdsListener
The TableCellIdsListener
type describes a function that is used to listen to changes to the Cell
Ids
that appear anywhere in a Table
.
(
store: Store,
tableId: Id,
getIdChanges: GetIdChanges | undefined,
): void
Type | Description | |
---|---|---|
store | Store | A reference to the |
tableId | Id | |
getIdChanges | GetIdChanges | undefined | A function that returns information about the |
returns | void | This has no return value. |
A TableCellIdsListener
is provided when using the addTableCellIdsListener
method. See that method for specific examples.
When called, a TableCellIdsListener
is given a reference to the Store
, the Id
of the Table
whose Cell
Ids
changed, and a GetIdChanges
function that can be used to query which Ids
changed during the transaction.
Since
v3.3.0