ValuesInHtmlTableProps
ValuesInHtmlTableProps
props are used for components that will render Values
in an HTML table, such as the ValuesInHtmlTable
component.
{
store?: StoreOrStoreId;
editable?: boolean;
valueComponent?: ComponentType<ValueProps>;
getValueComponentProps?: (valueId: Id) => ExtraProps;
extraCellsBefore?: ExtraValueCell[];
extraCellsAfter?: ExtraValueCell[];
}
Type | Description | |
---|---|---|
store? | StoreOrStoreId | The |
editable? | boolean | Whether the |
valueComponent? | ComponentType<ValueProps> | A custom component for rendering each |
getValueComponentProps? | (valueId: Id) => ExtraProps | A function for generating extra props for each custom |
extraCellsBefore? | ExtraValueCell[] | An optional list of extra Cells to render before the main table Cells. |
extraCellsAfter? | ExtraValueCell[] | An optional list of extra Cells to render after the main table Cells. |
Since
v4.1.0