Interface ICellEditResponse

An object returned from cell editor after a successful edit.

interface ICellEditResponse {
    cell: CellEditor.CellConfig;
    cursorMovement: CursorMoveDirection;
    value: any;
}

Properties

An object which holds the configuration data for a cell.

cursorMovement: CursorMoveDirection

Cursor move direction based on keys pressed to end the edit.

value: any

Value input.