ResultCellIdsListener

The ResultCellIdsListener type describes a function that is used to listen to changes to the Cell Ids in a Row in a query's result Table.

(
  queries: Queries,
  tableId: Id,
  rowId: Id,
): void
TypeDescription
queriesQueries

A reference to the Queries object that changed.

tableIdId

The Id of the Table that changed, which is also the query Id.

rowIdId

The Id of the Row that changed.

returnsvoid

This has no return value.

A ResultCellIdsListener is provided when using the addResultCellIdsListener method. See that method for specific examples.

When called, a ResultCellIdsListener is given a reference to the Queries object, the Id of the Table that changed (which is the same as the query Id), and the Id of the Row whose Cell Ids changed.

Since

v2.0.0