ActionColumnContext

Context required by functions when using an Action Column Button

TypeScript
export interface ActionColumnContext<TData = any> extends
Extends

BaseContext

Properties

PropertyDescription
actionColumnAction Column in question
dataThe current row's data
primaryKeyValuePrimary Key Value in current row
rowNodeCurrent AG Grid Row Node
adaptableContextCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

actionColumn

Action Column in question

TypeScript
actionColumn: ActionColumn<TData>;
Property Value

ActionColumn<TData>

data

The current row's data

TypeScript
data: TData;
Property Value

TData

primaryKeyValue

Primary Key Value in current row

TypeScript
primaryKeyValue: any;
Property Value

any

rowNode

Current AG Grid Row Node

TypeScript
rowNode: IRowNode<TData>;
Property Value

IRowNode<TData>

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any