5.0
NonEditableCell

NonEditableCell

The NonEditableCell template is used to display non-editable text values within a cell.

Implementation

Interface declaration

interface NonEditableCellProps {
  value?: string;
  style?: React.CSSProperties;
}
Property nameTypeDescription
value?stringThe text value of the cell.
style?React.CSSPropertiesCSS properties to apply to the cell.