I'm checking datapicker documentation here trying to find a way to change it from a full display date picker to just something where I can pick a year only. But I can't find anything. I tried suggestions found here like this, but it still displays the full view.

.datepicker({changeDay:false, changeMonth:false, changeYear:true})

Can I somehow turn the datapicker to a year picker only?

link|improve this question

6  
Wouldn't a <select></select> suffice? – Andrew Hare Feb 23 '11 at 16:44
@Andrew Hare I'm just trying to keep them consistent because I have other datepickers and use the same style for all of them. It would be nice if it were possible. – twitter Feb 23 '11 at 17:02
feedback

1 Answer

up vote 0 down vote accepted

For my company's website, we used jQuery UI slider instead since year is a single value. In our implementation, we also had to do a year range, a slider also accommodated for that.

http://jqueryui.com/demos/slider/#steps

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.