Hi all i used the Jquery Date picker which works well enough for me. But i am having a small issue i.e i would like to set the Start year from 1900 and End year to Current Year or 9999..

In the script i found this for year range

yearRange: 'c-100:c+100'

If i move forward to some thing like 1800 i am unable to see the current year.. What changes should i do here in order to see my years in a such a way that the years should be 1900-current year or 1900-9999

I tried this which works for me but as it is loading when the calendar loads it taking much time when my application runs

 datepick({yearRange: '1900:9999'});

So any better option than this to achieve as per my requirement

link|improve this question

I'm just interested why you need to have the ability to select dates from the year 9999? – martincarlin87 Nov 21 '11 at 12:51
1  
You're already doing what the Datepicker doco says to do ('1900:9999'). Can you explain in more detail why this isn't working for you? And what is your criteria for deciding whether you want the upper limit to be the current year or 9999? – nnnnnn Nov 21 '11 at 12:52
It is not mandatory to have 9999 at least i would like to select up to current year it's enough.. But as per the Jquery plugin if we move forward of years the later years are not shown i.e my issue – User Nov 21 '11 at 12:54
nnnn that works but when my application was big on clicking the select date the calendar is loading lazy that's why i am looking for alternative – User Nov 21 '11 at 12:55
feedback

1 Answer

try this:

datepick({yearRange: '1900:' + new Date().getFullYear()});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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