Used in Expressions to reference row values which are not a column definition

TypeScript
export interface

Properties

PropertyDescription
dataTypeData Type of field, used to validate and show correctly in UI
labelLabel for field (optional - defaults to name)
nameName of field in data source, e.g. 'rowId', 'parentObject.childObject.value'

Property Details

dataType

Data Type of field, used to validate and show correctly in UI

TypeScript
dataType: AdaptableColumnDataType;
Property Value

AdaptableColumnDataType

label

Label for field (optional - defaults to name)

TypeScript
label?: string;
Property Value

string

name

Name of field in data source, e.g. 'rowId', 'parentObject.childObject.value'

TypeScript
name: string;
Property Value

string