Note that can be applied to a Cell in AdapTable

TypeScript
export interface AdaptableNote extends
Extends

AdaptableObject

Properties

PropertyDescription
ColumnIdId of Column containing the Note
PrimaryKeyValueValue in Grid's Primary Key Column
TextContent of the Note
TimestampWhen Note was made
IsReadOnlySets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full')

Property Details

ColumnId

Id of Column containing the Note

TypeScript
ColumnId: string;
Property Value

string

PrimaryKeyValue

Value in Grid's Primary Key Column

TypeScript
PrimaryKeyValue: any;
Property Value

any

Text

Content of the Note

TypeScript
Text: string;
Property Value

string

Timestamp

When Note was made

TypeScript
Timestamp?: number;
Property Value

number

IsReadOnly

Inherited from AdaptableObject

Sets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full')

TypeScript
IsReadOnly?: boolean;
Property Value

boolean