Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible localize jquery datapicker using globalize plugin (https://github.com/jquery/globalize)?

I tried in this way

// get a date format 
var dt = Globalize.culture().calendar.patterns.d;
$('#dp1').datepicker({
    dateFormat : dt
});

but it does not work because datepicker and globalize plugin use two format different.

I want the date with 2 digits for the month, 2 digits for the day and 4 digits for the year, so in jquery the date format must be "dd/mm/yy". But globalize use a different date format: en-Us -> M/d/yyyy it-IT -> dd/MM/yyyy

How can I fix this problem?

share|improve this question
BTW. globalize3 tag, refers to Ruby On Rails extension, rather than Globalize script. – PaweÅ‚ Dyda Oct 31 '12 at 18:51

3 Answers

In the early days of Globalize (called back then jQuery Globalize) there was specifically patched version of Datepicker available.
Frankly, I don't think it is usable anymore, but you may try to apply the same modifications to current version and the problem will be resolved. This could be done quite easy with a diff command available with many Unix-like systems (and on Windows via Cygwin for example).


Edit: API

I think it is at least good to mention, that Datepicker is offering rich API.
You can use to tailor down Datepicker's Localization. However, when it comes to date format, I am afraid that you would be forced to use some replacement to remove "excessive" y's from year field. That's something I would prefer not to do, instead I would patch Datepicker, as suggested previously, but...

share|improve this answer

Small converter:

Globalize.getPatternForDatapicker = function (pattern) {
    return this.culture().calendar.patterns[pattern || 'd'].toLowerCase().replace('yyyy', 'yy');
};

and

$('#dp1').datepicker({dateFormat : Globalize.getPatternForDatapicker()});
share|improve this answer

Try like this

$('#dp1').datepicker({dateFormat : 'yy-mm-dd'});
share|improve this answer
You can get date in the format 2012-09-12 – Gautam3164 Sep 12 '12 at 12:57
but in that way the date format not change in according to user's culture, or Am I wrong? – Webman Sep 12 '12 at 13:03
user's culture means a user can change the formate...??? – Gautam3164 Sep 12 '12 at 13:05
If the user is Italian i want to use this format "dd/mm/yy", if user is American i want to use "mm/dd/yy". But with $('#dp1').datepicker({dateFormat : 'yy-mm-dd'}) the date format is always the same for all user, right?; – Webman Sep 12 '12 at 13:09
Then take the user data and store it,acc to that give switch..?? – Gautam3164 Sep 12 '12 at 13:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.