Axinom Mosaic Libraries
    Preparing search index...

    Interface DateTimeTextProps

    interface DateTimeTextProps {
        autoComplete?: "on" | "off";
        autoFocus?: boolean;
        className?: string;
        disabled?: boolean;
        error?: string;
        id?: string;
        inlineMode?: boolean;
        label?: string;
        modifyTime?: boolean;
        name: string;
        onChange?: (value: string | null, isValidDate: boolean) => void;
        placeholder?: string;
        tooltipContent?: ReactNode;
        value?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    autoComplete?: "on" | "off"

    Whether or not the control supports auto complete

    autoFocus?: boolean

    Whether or not the control should start focused (default: false)

    className?: string

    CSS Class name for additional styles

    disabled?: boolean

    Whether or not the control is disabled (default: false)

    error?: string

    If set, indicates the control has an error and will display this prop as the error message

    id?: string

    Form control id

    inlineMode?: boolean

    Hide options not needed in the “inline” scenario

    label?: string

    Form control label

    modifyTime?: boolean

    Whether the control modifies the time portion of the value (default: true)

    name: string

    Name of form control, required and must be unique from other form control names. This name should match the the name of the object corresponding to this control.

    onChange?: (value: string | null, isValidDate: boolean) => void

    Callback when the datepicker popup is closed or the date field value is changed

    placeholder?: string

    Input placeholder

    tooltipContent?: ReactNode

    A tooltip of additional information

    value?: string

    Current value the form control has