I'm using jquery ui datepicker with changeYear. The problem is that it shows the years in chunks (from 1985 to 2005, then clicking on 1985 opens other years) I need to show ALL the years in the range I'm passing like this:

$(".datepickerBDAY_trigger").datepicker({
    "dateFormat": "yy-mm-dd",
    changeMonth: true,
    changeYear: true,
    maxDate: "-16Y",
    minDate: "-100Y"
});

How can I do this? I cannot find this information anywhere else.

Thanks

link|improve this question

1  
very good question – Rohan Nov 14 '11 at 10:35
feedback

1 Answer

up vote 1 down vote accepted

You can use the yearRange option. Its first form (-nn:+nn) allows you to specify a range relative to the current year instead of the currently selected year.

$(".datepickerBDAY_trigger").datepicker({
    dateFormat: "yy-mm-dd",
    changeMonth: true,
    changeYear: true,
    maxDate: "-16Y",
    minDate: "-100Y",
    yearRange: "-100:-16"
});

You can see the results in this fiddle.

link|improve this answer
Thank you very much. – 0plus1 Nov 14 '11 at 10:51
feedback

Your Answer

 
or
required, but never shown

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