Highcharts Grid
    Preparing search index...

    The options for the cell edit mode functionality.

    interface ColumnEditModeOptions {
        enabled?: boolean;
        renderer?:
            | SelectRendererOptions
            | CheckboxRendererOptions
            | DateInputRendererOptions
            | DateTimeInputRendererOptions
            | NumberInputRendererOptions
            | TextInputRendererOptions
            | TimeInputRendererOptions;
        validationRules?: ((keyof RulesRegistryType) | RuleDefinition)[];
    }
    Index

    Properties

    enabled?: boolean

    Whether to enable the cell edit mode functionality.

    The edit mode renderer for the column.

    validationRules?: ((keyof RulesRegistryType) | RuleDefinition)[]

    Validation options for the column.

    If not set, the validation rules are applied according to the data type.