Forms 6.5 Number formatter not showing decimals for percentages
AEM forms 6.5 (Centos)
Using Decimal, num{z9.99%} does not show percentage after decimal. Input is 0.6503. Should show "65.03%". Shows "65.00%",
Say it should.
I can use a JS solution, but that kind of defeats the purpose.
i.e. (Number(num/100).toLocaleString(undefined,{style: 'percent', minimumFractionDigits:2});)
Suggestions?
Thanks...Joel