Highcharts Grid
    Preparing search index...

    Interface for rendering edit mode content in a cell. It allows the view renderers to be used in the edit mode of a cell.

    interface EditModeRenderer {
        render(cell: TableCell, parent?: HTMLElement): EditModeContent;
    }

    Implemented by

    Index

    Methods

    Methods

    • Renders the edit mode content for a given cell.

      Parameters

      • cell: TableCell

        The cell to render the edit mode content for.

      • Optionalparent: HTMLElement

        Optional parent element to append the rendered content to. If not provided, the content will be rendered in the cell's main element.

      Returns EditModeContent