formcycle 8.4.0 - JavaScript for forms
    Preparing search index...

    Type Alias NumberFormatDecimalPaddingMode

    NumberFormatDecimalPaddingMode: "always" | "never" | "when-fractional"
    • always - Always pad with zeroes. The number 1.5 will be displayed as 1.50 if the number of decimal places is 2.
    • never - Never pad with zeroes. The number 1.5 will be displayed as 1.5.
    • when-fractional - Pad with zeros when the number has a fractional part. The number 1 will be displayed as 1, the number 1.5 as 1.50.