Documentation
    Preparing search index...

    Interface DateTimePropertyType

    Configuration dictionary for instantiating a DateTimeProperty. Extends BasePropertyType to handle date and time manipulations.

    Parameter Type Description Default
    timezone string The timezone string (e.g. 'UTC', 'Europe/Paris', or 'Z'). 'Z'
    interface DateTimePropertyType {
        defaultValue?: any;
        htmlType?: PropertyHTMLType;
        id?: string;
        mandatory?: boolean;
        name: string;
        onChange?: (dao: DataObjectClass<any>) => DataObjectClass<any>;
        parent?: DataObjectClass<any>;
        protected?: boolean;
        timezone?: string;
        type?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    defaultValue?: any
    htmlType?: PropertyHTMLType
    id?: string
    mandatory?: boolean
    name: string
    onChange?: (dao: DataObjectClass<any>) => DataObjectClass<any>
    parent?: DataObjectClass<any>
    protected?: boolean
    timezone?: string
    type?: string