CustomResultCell
The CustomResultCell
object is used to configure custom cell rendering for query results in an HTML table.
{
label?: string;
component?: ComponentType<ResultCellProps>;
getComponentProps?: (rowId: Id, cellId: Id) => ExtraProps;
}
Type | Description | |
---|---|---|
label? | string | An optional string that will be used as the label at the top of the table column for this |
component? | ComponentType<ResultCellProps> | An optional custom component for rendering each |
getComponentProps? | (rowId: Id, cellId: Id) => ExtraProps | An optional function for generating extra props for each custom |
Since
v4.1.0