Re: how to format a percentage
have you tried without the decimal OGNL might treat your numbers as integers and there for you get 0. I havent test it out but thats what I used to do for JSTL
how to format a percentage
I have the following in my properties file: format.percent = {0,number,##0.00'%'} But the following code doesnt work and always gives 0.00% ...evaluates to However, the following code does work... ...evaluates to What is going on here? why dont decimals work?