Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This setting controls decimal formatting for the pjs.char() and pjs.editCode() functions. If set to "I" or "J", a comma will be used as the decimal. Otherwise a dot will be used.

...

decimalFormat affects both the decimal format and the separator.

  • When decimal format is not set:
    • decimal place: dot
    • thousands separator: comma
  • When decimal format is set to I or J:
    • decimal place: comma
    • thousands separator: dot


Code Block
titleExample - Use comma for decimal
decimalFormat: "I"

...