@timlassiter11/yatl
    Preparing search index...

    Interface DateEditorOptions<T>

    interface DateEditorOptions<T extends object = UnspecifiedRecord> {
        canEdit?: (field: NestedKeyOf<T>, row: T) => boolean;
        max?: Date;
        min?: Date;
        step?: number;
    }

    Type Parameters

    Hierarchy

    • BaseEditorOptions<T>
      • DateEditorOptions
    Index

    Properties

    Properties

    canEdit?: (field: NestedKeyOf<T>, row: T) => boolean
    max?: Date
    min?: Date
    step?: number