NonEditableCell
The NonEditableCell
template is used to display non-editable text values within a cell.
Implementation
- Open
NonEditableCell
implementation on GitHub (opens in a new tab)
Interface declaration
interface NonEditableCellProps {
value?: string;
style?: React.CSSProperties;
}
Property name | Type | Description |
---|---|---|
value? | string | The text value of the cell. |
style? | React.CSSProperties | CSS properties to apply to the cell. |