TinyBase logoTinyBase β

ResultRowViewProps

ResultRowViewProps props are used for components that refer to a single Row in a query ResultTable, such as the ResultRowView component.

{
  queryId: Id;
  rowId: Id;
  queries?: QueriesOrQueriesId;
  separator?: Snippet<[]>;
  debugIds?: boolean;
  cell?: Snippet<[cellId: Id]>;
}
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 ResultTable 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.

separator?Snippet<[]>

A component or string to separate each rendered Cell.

debugIds?boolean

Whether the component should also render the Id of the Row, and its descendent objects, to assist with debugging.

cell?Snippet<[cellId: Id]>

A snippet for rendering each Cell in the Row, to override the default ResultCellView component.

Since

v8.1.0