Bluestep JS Documentation
    Preparing search index...

    Interface CreateNumberFloatFieldProperties

    Properties for creating a number float field.

    interface CreateNumberFloatFieldProperties {
        autoCopy?: boolean;
        columnName: string;
        commaFormat?: boolean;
        defaultValue?: any;
        deprecated?: boolean;
        fieldControlType?:
            | "NORMAL"
            | "HIDDEN_DEFAULT"
            | "READONLY_DEFAULT"
            | "SMART_HIDE"
            | "READONLY_WHEN_COMPLETED"
            | "CUSTOM";
        fieldControlValue?: string;
        formula?: string;
        formulaId?: string;
        frozen?: boolean;
        helpText?: string;
        hiddenFromSupers?: boolean;
        label?: string;
        longLabel?: boolean;
        maximumValue?: string;
        minimumValue?: string;
        neverHideHelpText?: boolean;
        numberFormatType: "FLOAT";
        placeholder?: string;
        popupHint?: boolean;
        reportLabel?: string;
        required?: boolean;
        styleClass?: string;
        userUpdateable?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    autoCopy?: boolean

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

    columnName: string

    Database column name.

    commaFormat?: boolean

    Whether to display numbers with comma thousands separators

    defaultValue?: any

    Default value pre-populated when creating 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

    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

    longLabel?: boolean

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

    maximumValue?: string

    Maximum allowed value for validation

    minimumValue?: string

    Minimum allowed value for validation

    neverHideHelpText?: boolean

    Whether to always show help text (never collapse it)

    numberFormatType: "FLOAT"

    Format type discriminant.

    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)