Lime Web Components API Documentation - v7.2.0
    Preparing search index...

    Interface LimeProperty

    interface LimeProperty {
        acl: Acl;
        defaultvalue?: LimeObjectValue | Option;
        fieldorder: number;
        has_sql?: boolean;
        label: string;
        length?: number;
        localname: string;
        name: string;
        options?: Option[];
        relation?: {
            getBackreference: () => LimeProperty;
            getLimetype: () => LimeType;
        };
        required: boolean;
        type: PropertyType;
    }
    Index

    Properties

    acl: Acl
    defaultvalue?: LimeObjectValue | Option

    The schema-defined default value for this property when creating a new limeobject. The runtime type matches the property's PropertyType (see LimeObjectValue).

    An option property is the exception: its default is the full Option, not the key string a stored option value holds.

    fieldorder: number
    has_sql?: boolean
    label: string
    length?: number
    localname: string
    name: string
    options?: Option[]
    relation?: { getBackreference: () => LimeProperty; getLimetype: () => LimeType }
    required: boolean