Editing

The following Injection Tokens apply to the Editing module.

Edition triggers

ROW_EDITION_DBLCLICK

This Injection Token disables the double-click functionality that takes a row to edition state.

const ROW_EDITION_DBLCLICK: InjectionToken<boolean>;

ROW_EDITION_ENTER_KEY

This Injection Token disables the ENTER key functionality that saves a row changes.

const ROW_EDITION_ENTER_KEY: InjectionToken<boolean>;

ROW_EDITION_ESC_KEY

This Injection Token disables the ESC key functionality that cancels a row edition.

const ROW_EDITION_ESC_KEY: InjectionToken<boolean>;

Validation messages

CUSTOM_EDITION_ERROR_MESSAGES

const CUSTOM_EDITION_ERROR_MESSAGES: InjectionToken<CustomErrorMessage>;

Multiple rows edition

MAX_ROWS_IN_EDITION

This Injection Token reconfigures the maximum number of rows that the DikeGrid instance can have in the edition state.

const MAX_ROWS_IN_EDITION: InjectionToken<boolean>;

WAIT_FOR_MULTIPLE_ROWS_DELETION

To avoid the DikeGrid showing the Processing Indicator during the deletion operation, provide this Injection Token with a false value.

const WAIT_FOR_MULTIPLE_ROWS_DELETION: InjectionToken<boolean>;

WAIT_FOR_MULTIPLE_ROWS_UPDATE

To avoid the DikeGrid showing the Processing Indicator during the update operation, provide this Injection Token with a false value.

const WAIT_FOR_MULTIPLE_ROWS_UPDATE: InjectionToken<boolean>;

WAIT_FOR_MULTIPLE_ROWS_CANCELATION

To avoid the DikeGrid showing the Processing Indicator during the cancelation operation, provide this Injection Token with a false value.

const WAIT_FOR_MULTIPLE_ROWS_CANCELATION: InjectionToken<boolean>;

WAIT_FOR_MULTIPLE_ROWS_RESTORATION

To avoid the DikeGrid showing the Processing Indicator during the restoration operation, provide this Injection Token with a false value.

const WAIT_FOR_MULTIPLE_ROWS_RESTORATION: InjectionToken<boolean>;

Last updated