Details
-
Task
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
4.1.3
-
None
Description
AjaxShellDelegate#isLocaleSupported is used to check whether the locale is supported. For what ever reason the default list of pre-bundled dojo supported locales is to short.
protected String[] SUPPORTED_LOCALES =
;
I have seen that this check was added to fix https://issues.apache.org/jira/browse/TAPESTRY-1551 but I have another scenario.
I want to use dojo.i18n.number.parse(value, djConfig.locale); this parsing method uses internally dojo.i18n.number.FORMAT_TABLE
dojo.i18n.number.FORMAT_TABLE support much more locales. The only one possibility to get the locale on client side is djConfig.locale
But because of the mentioned limitation djConfig.locale cannot be used for number formating.
Is it possible to remove this check or at least to complete the list?