Interface ICellEditOptions

An object containing cell editing options.

interface ICellEditOptions {
    editor?: ICellEditor;
    onCancel?: (() => void);
    onCommit?: ((response) => void);
    validator?: ICellInputValidator;
}

Properties

editor?: ICellEditor

Cell editor to use for editing.

Notes

This object is only used by cell editor controller. If not set, controller picks the most suitable editor for the particular cell configuration.

onCancel?: (() => void)

Callback method to call on cell edit cancel.

Type declaration

    • (): void
    • Returns void

onCommit?: ((response) => void)

Callback method to call on cell edit commit.

Type declaration

Cell input validator to use for value validation.