Attribute | Type | Description | Req. | RTExp |
currencyCode | String |
ISO 4217 currency code, applied only when formatting currencies.
| |
|
currencySymbol | String |
Currency symbol, applied only when formatting
currencies.
| |
|
groupingUsed | String |
Flag specifying whether formatted output will
contain grouping separators. Expressions must
evaluate to a boolean. Default value is true.
| |
|
integerOnly | String |
Flag specifying whether only the integer part
of the value will be formatted and parsed.
Expressions must evaluate to a boolean.
Default value is false.
| |
|
locale | String |
Locale whose predefined styles for numbers
are used during formatting and parsing. If
not specified, the Locale returned by
RequestContext.getLocale() will be used. Expressions must evaluate to a java.util.Locale.
| |
|
maxFractionDigits | String |
Maximum number of digits that will be formatted
in the fractional portion of the output. Expressions
must evaluate to an int.
| |
|
maxIntegerDigits | String |
Maximum number of digits that will be formatted
in the integer portion of the output. Expressions
must evaluate to an int.
| |
|
minFractionDigits | String |
Minimum number of digits that will be formatted
in the fractional portion of the output. Expressions
must evaluate to an int.
| |
|
minIntegerDigits | String |
Minimum number of digits that will be formatted
in the integer portion of the output. Expressions
must evaluate to an int.
| |
|
pattern | String |
Custom formatting pattern which determins how the
number string should be formatted and parsed.
| |
|
type | String |
Specifies how the number string will be formatted
and parsed. Valid values are "number", "currency",
and "percentage". Default value is "number".
| |
|