AdaptableField
Used in Expressions to reference row values which are not a column definition
TypeScript
export interfaceProperties
| Property | Type | Description |
|---|---|---|
| dataType | AdaptableColumnDataType | Data Type of field, used to validate and show correctly in UI |
| label | string | Label for field (optional - defaults to name) |
| name | string | Name 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
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