Options for managing AdapTable Notes

TypeScript
export interface

Properties

PropertyDescriptionDefault
dateFormatDate Format string for Notes timestamp'dd-MM-yyyy HH:mm:ss'
isCellNotableWhether a cell can contain Notes
showPopupCloseButtonShow the Close Button in the Notes Popuptrue

Property Details

dateFormat

Date Format string for Notes timestamp

TypeScript
dateFormat?: string | (() => string);
Default Value

'dd-MM-yyyy HH:mm:ss'

Property Value

string | (() => string)

isCellNotable

Whether a cell can contain Notes

TypeScript
isCellNotable?: (context: NotableCellContext) => boolean;
Property Value

(context:NotableCellContext) => boolean

showPopupCloseButton

Show the Close Button in the Notes Popup

TypeScript
showPopupCloseButton?: boolean;
Default Value

true

Property Value

boolean