TinyBase logoTinyBase β

ResultTableViewProps

ResultTableViewProps props are used for components that refer to a single query ResultTable, such as the ResultTableView component.

{
  queryId: Id;
  queries?: QueriesOrQueriesId;
  separator?: Snippet<[]>;
  debugIds?: boolean;
  row?: Snippet<[rowId: Id]>;
}
TypeDescription
queryIdId

The Id of the query in the Queries object for which the ResultTable will 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 Row.

debugIds?boolean

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

row?Snippet<[rowId: Id]>

A snippet for rendering each Row in the Table, to override the default ResultRowView component.

Since

v8.1.0