You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have the following issue with Jet Version 9.2.0:
Current Behaviour:
The oj.IntlNumberConverter does not respect the "signDisplay" property when it is specified in its' options. E.g. when "signDisplay" is set to "always", the sign is not always displayed.
Add signDisplay: 'always' to the options and apply changes. Note, that no sign (i.e. "+") is displayed.
Change this.converter from new NumberConverter.IntlNumberConverter(options) to new Intl.NumberFormat('en', options) and apply changes. Note, that the sign is now displayed.
Kind Regards,
Philip
The text was updated successfully, but these errors were encountered:
Hello Oracle JET Team,
I have the following issue with Jet Version 9.2.0:
Current Behaviour:
The oj.IntlNumberConverter does not respect the "signDisplay" property when it is specified in its' options. E.g. when "signDisplay" is set to "always", the sign is not always displayed.
Expected Behaviour:
According to ECMA-402, same formating as with Intl.NumberFormat.
Setps to Reproduce:
signDisplay: 'always'
to the options and apply changes. Note, that no sign (i.e. "+") is displayed.this.converter
fromnew NumberConverter.IntlNumberConverter(options)
tonew Intl.NumberFormat('en', options)
and apply changes. Note, that the sign is now displayed.Kind Regards,
Philip
The text was updated successfully, but these errors were encountered: