@timlassiter11/yatl
    Preparing search index...

    Interface TextEditorOptions<T>

    interface TextEditorOptions<T extends object = UnspecifiedRecord> {
        canEdit?: (field: NestedKeyOf<T>, row: T) => boolean;
        maxlength?: number;
        minlength?: number;
        pattern?: string;
        placeholder?: string;
    }

    Type Parameters

    Hierarchy

    • BaseEditorOptions<T>
      • TextEditorOptions
    Index

    Properties

    canEdit?: (field: NestedKeyOf<T>, row: T) => boolean
    maxlength?: number
    minlength?: number
    pattern?: string
    placeholder?: string