unable to display amount in indian format

0
Hi All   I have tried all the format available in forum and documentation but unable get the desired output. I need to display amount in indian format i.e 1,00,000   I was getting unable to parse errors when tried the format specified in docs any suggetions please help
asked
2 answers
0

Hello IMTS,

 

If all of this did not work maybe you can create a custom jave or javascript action that does the trick for you, look for example into the localestring 

numObj.toLocaleString([locales [, options]])

 And create an extra attribute where you can put the formatted value.

 

Hope this helps,

 

Good luck!

answered
0

Hi IMTS,

Maybe you can try FormatDecimal() 

formatDecimal($Amount, '#,###.#')

This should work, 

Let me know, if you have any issues,

Hope it helps!

 

answered