Change decimal values in the validation feedback

0
Hi, anyone know how to change the decimal values in the validation feedback below to “30.00” only?
asked
1 answers
0

Hi, Instead of using toString() function try using formatDecimal() function to convert your Decimal value to String. In your case like so.

Reference: Parse & Format Decimal Function Calls - Studio Pro 8 Guide | Mendix Documentation

formatDecimal($GradeLatex/Viscosity, '##.##')
answered