Info passed into RowFormSubmitted Event for Deleted Rows

TypeScript
export interface DeletedRowInfo<TData = any> extends
Extends

BaseContext

Properties

PropertyDescription
rowNodeNode being deleted
typeSpecifies its a Deleted Row Form
adaptableContextCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

rowNode

Node being deleted

TypeScript
rowNode: IRowNode<TData>;
Property Value

IRowNode<TData>

type

Specifies its a Deleted Row Form

TypeScript
type: 'rowDeleted';
Property Value

'rowDeleted'

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any