Functions for accessing Action Columns

TypeScript
export interface

Methods

MethodDescription
displayCloneRowForm(primaryKey)Open create dialog for cloning an existing row
displayCreateRowForm()Open create dialog for a new row
displayEditRowForm(primaryKey)Open edit dialog for row with the given primary key value

Method Details

displayCloneRowForm

Open create dialog for cloning an existing row

TypeScript
displayCloneRowForm(primaryKey?: any): void;
Parameters
ParameterTypeDescription
primaryKeyanyPrimary Key of the duplicated row
Returns

void

displayCreateRowForm

Open create dialog for a new row

TypeScript
displayCreateRowForm(): void;
Returns

void

displayEditRowForm

Open edit dialog for row with the given primary key value

TypeScript
displayEditRowForm(primaryKey: any): void;
Parameters
ParameterTypeDescription
primaryKeyanythe primary key of the edited row
Returns

void