TreeINFO-For-M365 documentation
    Preparing search index...

    Defines a form field displayed in the dialog.

    interface DialogFormField {
        DefaultValue?: any;
        Description?: string;
        Hidden?: boolean;
        InternalName: string;
        Properties?: AdvancedChoice | AdvancedTable | ExternalLookup | Attachment | ICColumn;
        ReadOnlyField?: boolean;
        Required?: boolean;
        Title: string;
        Type:
            | TypeAsString
            | "AdvancedTable"
            | "AdvancedChoice"
            | "ExternalLookup"
            | "Attachment"
            | "Rating"
            | "IsdsBox"
            | "CountedColumn"
            | "TemplateColumn"
            | "SPField";
        Value?: any;
    }
    Index

    Properties

    DefaultValue?: any
    Description?: string
    Hidden?: boolean
    InternalName: string
    ReadOnlyField?: boolean
    Required?: boolean
    Title: string
    Type:
        | TypeAsString
        | "AdvancedTable"
        | "AdvancedChoice"
        | "ExternalLookup"
        | "Attachment"
        | "Rating"
        | "IsdsBox"
        | "CountedColumn"
        | "TemplateColumn"
        | "SPField"
    Value?: any