Attributes Decimal

0
Good afternoon everyone. I created an entity with some attributes of the decimal type, but when the value received in this attribute is zero, mendix stores it as follows: "0E-8". What should I do to keep the value in "0.00000" format? Grateful.
asked
1 answers
2

It’s just a format issue. Read more here about formatting: https://docs.mendix.com/refguide/numeric-formatting

Example:
 

parseDecimal('3.2051282050E-09', '#,##########')

Results in: 32.051282050​​​​​​​

answered