Web Console date chooser shows garbage text
-------------------------------------------

                 Key: FELIX-3408
                 URL: https://issues.apache.org/jira/browse/FELIX-3408
             Project: Felix
          Issue Type: Bug
            Reporter: Valentin Valchev
            Assignee: Valentin Valchev


Steps to reproduce:
- clear cache
- restart browser
- set default browser locale to something different than english
- open web console in the browser
- use a plugin that uses the date chooser
- popup the date chooser and you will see some strange characters for the days


We tried to solve the same problem a long time ago, by adding the following 
code to support.js:
        var locale = getCookie("locale");
        if (locale) {
                if ( !$.datepicker.regional[locale] ) locale = '';
                $.datepicker.setDefaults($.datepicker.regional[locale]);
        }

The problem is when you open the web console for first time, the cookie is not 
set. It is set when you choose it using the flags on the top-right side of the 
window. 
Unfortunately from javascript we cannot read the browser locale (at least, that 
is not portable). So the only solution would be that the web console sets the 
language cookie with every request.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to