Bluestep JS Documentation
    Preparing search index...

    Interface CreateSpacerFieldProperties

    Properties for creating a spacer field.

    interface CreateSpacerFieldProperties {
        columnName: string;
        deprecated?: boolean;
        fieldControlType?:
            | "NORMAL"
            | "HIDDEN_DEFAULT"
            | "READONLY_DEFAULT"
            | "SMART_HIDE"
            | "READONLY_WHEN_COMPLETED"
            | "CUSTOM";
        frozen?: boolean;
        height?: number;
        helpText?: string;
        hiddenFromSupers?: boolean;
        label?: string;
        neverHideHelpText?: boolean;
        popupHint?: boolean;
        userUpdateable?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    columnName: string

    Database column name.

    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

    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

    label?: string

    Display label shown to users on the form

    neverHideHelpText?: boolean

    Whether to always show help text (never collapse it)

    popupHint?: boolean

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

    userUpdateable?: boolean

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