Documentation
    Preparing search index...

    Interface ObjectPropertyType

    Configuration dictionary for instantiating an ObjectProperty. Defines the class type of the expected object.

    Parameter Type Description Default
    instanceOf any The class constructor or class name string the object must match. Required
    interface ObjectPropertyType {
        defaultValue?: any;
        htmlType?: PropertyHTMLType;
        id?: string;
        instanceOf: any;
        mandatory?: boolean;
        name: string;
        onChange?: (dao: DataObjectClass<any>) => DataObjectClass<any>;
        parent?: DataObjectClass<any>;
        protected?: boolean;
        type?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

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