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