Highcharts Grid
    Preparing search index...

    Represents a date input type of cell content.

    Hierarchy

    • DateInputContentBase
      • DateInputContent

    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

    Whether to finish the edit after a change.

    input: HTMLInputElement

    The HTML input element representing the date input.

    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

    Options of the renderer.

    renderer: CellRenderer

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

    Accessors

    • get rawValue(): string

      Gets the raw value of the input element.

      Returns string

    • get value(): number

      Gets the value of the input element.

      Returns number

    Methods

    • Adds the input element to the parent element.

      Parameters

      • parentElement: HTMLElement = ...

        The parent element to add the input element to.

      Returns HTMLInputElement

      The input element.

    • Converts the cell value to a string for the input.

      Returns string

    • Destroys the content.

      Returns void

    • Gets the input type. Used to override the input type.

      Returns "date"

    • Gets the main element (input) of the content.

      Returns HTMLInputElement

      The input element.

    • Updates the input element.

      Returns void