TinyBase logoTinyBase

ResultCellProps

ResultRowProps props are used for components that refer to a single Cell in a Row of a ResultTable, such as the ResultCellView component.

{
  queryId: Id;
  rowId: Id;
  cellId: Id;
  queries?: QueriesOrQueriesId;
  debugIds?: boolean;
}
TypeDescription
queryIdId

The Id of the query in the Queries object for which the ResultTable will be rendered.

rowIdId

The Id of the Row in the Table.

cellIdId

The Id of the Cell in the Row to be rendered.

queries?QueriesOrQueriesId

The Queries object to be accessed: omit for the default context Queries object, provide an Id for a named context Queries object, or provide an explicit reference.

debugIds?boolean

Whether the component should also render the Id of the Cell to assist with debugging.

Since

v2.0.0