Hello
I am return numbers from the database column set to number in dollar amount
for example 50.00
but when i map it to a label it drops the .00 and just shows 50
Can you help me I want it to show the 50.00
Hello
I am return numbers from the database column set to number in dollar amount
for example 50.00
but when i map it to a label it drops the .00 and just shows 50
Can you help me I want it to show the 50.00
Hi Vinny -
Use this line of code for your field in a success mapping:
pre
codereturn value.toFixed(2);/code
/pre
worked great
Thank you