Interface PersistentSheetCellEditorRef

interface PersistentSheetCellEditorRef {
    getLineHeight: (() => number);
    autoFocus(selector?): void;
    cancelEdit(): void;
    startEdit?(event): void;
    submitEdit(): void;
}

Hierarchy (view full)

Properties

getLineHeight: (() => number)

Type declaration

    • (): number
    • Returns number

Methods

  • This will be called if the StartEditEvent event has autoFocus set.

    Parameters

    • Optional selector: string

      A selector string (or empty means 'default' focus)

    Returns void

  • When editor is loaded, this will be called. Note this should not use the autoFocus property. here If this is set the editor focus will be called as appropriate.

    Parameters

    Returns void