Highcharts Grid
    Preparing search index...

    Represents a checkbox type of cell content.

    Hierarchy (View Summary)

    Implements

    Index

    Constructors

    Properties

    blurHandler?: (e: FocusEvent) => void

    Blur event handler for the edit mode content that can be overwritten in the Edit Mode Class.

    Type Declaration

      • (e: FocusEvent): void
      • Parameters

        • e: FocusEvent

          The focus event that triggered the blur.

        Returns void

    cell: TableCell

    The cell to which the content belongs.

    changeHandler?: (e: Event) => void

    Change event handler for the edit mode content that can be overwritten in the Edit Mode Class.

    Type Declaration

      • (e: Event): void
      • Parameters

        • e: Event

          The event that triggered the change.

        Returns void

    finishAfterChange: boolean = false

    Indicates whether the edit mode should finish after a change event.

    keyDownHandler?: (e: KeyboardEvent) => void

    Key down event handler for the edit mode content that can be overwritten in the Edit Mode Class.

    Type Declaration

      • (e: KeyboardEvent): void
      • Parameters

        • e: KeyboardEvent

          The keyboard event that triggered the key down.

        Returns void

    renderer: CellRenderer

    The renderer that allows to print content (inputs, selects, etc.)

    Accessors

    • get rawValue(): string

      Raw value of the edit mode cell content, in a string format.

      Returns string

    Methods

    • Renders the cell content.

      Parameters

      • parentElement: HTMLElement = ...

      Returns HTMLInputElement

    • Returns the main element of the edit mode content. In most cases it is an input element used to edit the cell value.

      Returns HTMLInputElement

    • Updates the cell content without re-rendering it.

      Returns void