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?: Component<ValueViewProps>;
getValueComponentProps?: (valueId: Id) => {[prop: string]: any};
extraCellsBefore?: ExtraValueCell[];
extraCellsAfter?: ExtraValueCell[];
}| Type | Description | |
|---|---|---|
store? | StoreOrStoreId | The |
editable? | boolean | Whether the |
valueComponent? | Component<ValueViewProps> | A custom component for rendering each |
getValueComponentProps? | (valueId: Id) => {[prop: string]: any} | 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