formatNumber
From Documentation
The default method:
String formatNumber (Object number, String pattern);
Formats a number (Integer, BigDecimal...) into a string with the given pattern.
There is another extended built in function,
String formatNumber (Object number, String pattern, Locale locale);
Formats a number (Integer, BigDecimal...) into a string with the given pattern and locale.
You can define a method to use this function by xel-method
Parameters:
In both default and extended function:
- number - the Number to format
- pattern - the pattern to apply
In extended function only:
- locale - the locale to apply
Version History
Version | Date | Content |
---|---|---|
6.0.1 |