TinyBase logoTinyBase

ParamValuesListener

The ParamValuesListener type describes a function that is used to listen to changes to the param values of a parameterized query.

(
  queries: Queries,
  queryId: Id,
  paramValues: ParamValues,
): void
TypeDescription
queriesQueries

A reference to the Queries object that changed.

queryIdId

The Id of the query whose param values changed.

paramValuesParamValues
returnsvoid

This has no return value.

A ParamValuesListener is provided when using the addParamValuesListener method. See that method for specific examples.

When called, a ParamValuesListener is given a reference to the Queries object, and the Id of the query whose param values changed.

Since

v7.2.0