Bluestep JS Documentation
    Preparing search index...

    Interface UpdateHtmlMemoFieldProperties

    Properties for updating a html memo field.

    interface UpdateHtmlMemoFieldProperties {
        autoCopy?: boolean;
        defaultValue?: any;
        defaultValueAsString?: string;
        deprecated?: boolean;
        fieldControlType?:
            | "NORMAL"
            | "HIDDEN_DEFAULT"
            | "READONLY_DEFAULT"
            | "SMART_HIDE"
            | "READONLY_WHEN_COMPLETED"
            | "CUSTOM";
        fieldControlValue?: string;
        formula?: string;
        formulaId?: string;
        frozen?: boolean;
        height?: number;
        helpText?: string;
        hiddenFromSupers?: boolean;
        jsonType?: string;
        label?: string;
        longLabel?: boolean;
        maxLength?: string;
        memoFormatType: "HTML";
        neverHideHelpText?: boolean;
        parameters?: string;
        placeholder?: string;
        popupHint?: boolean;
        reportLabel?: string;
        required?: boolean;
        styleClass?: string;
        userUpdateable?: boolean;
        width?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    autoCopy?: boolean

    Whether to automatically copy this field's value when cloning a record

    defaultValue?: any

    Default value pre-populated when creating new records

    defaultValueAsString?: string

    Default text value for new records

    deprecated?: boolean

    Whether this field is deprecated and hidden from new configurations

    fieldControlType?:
        | "NORMAL"
        | "HIDDEN_DEFAULT"
        | "READONLY_DEFAULT"
        | "SMART_HIDE"
        | "READONLY_WHEN_COMPLETED"
        | "CUSTOM"

    Visibility/editability control mode for this field

    fieldControlValue?: string

    Custom expression for CUSTOM field control type

    formula?: string

    BlueStep formula expression for computed field values

    formulaId?: string

    ID of a saved formula to use for computed values

    frozen?: boolean

    Whether this field is locked from editing by non-admin users

    height?: number

    Display height in rows

    helpText?: string

    Help text displayed below or beside the field

    hiddenFromSupers?: boolean

    Whether this field is hidden from parent/supervisor unit views

    jsonType?: string

    JSON Schema type for validation of the field contents

    label?: string

    Display label shown to users on the form

    longLabel?: boolean

    Whether the label spans the full width above the field instead of beside it

    maxLength?: string

    Maximum character length for input validation

    memoFormatType: "HTML"

    Format type discriminant.

    neverHideHelpText?: boolean

    Whether to always show help text (never collapse it)

    parameters?: string

    Configuration parameters for the HTML editor

    placeholder?: string

    Placeholder text shown in the empty input field

    popupHint?: boolean

    Whether to show help text as a popup tooltip instead of inline

    reportLabel?: string

    Alternate label used in reports and exports

    required?: boolean

    Whether this field must have a value before the record can be saved

    styleClass?: string

    CSS class name(s) applied to the field for custom styling

    userUpdateable?: boolean

    Whether end users can edit this field value (false = system-managed)

    width?: number

    Display width in columns