Working with the jsDatePick control, I want to display year selector controls like this example with the year selector controls visible >>
:
But I can only get it to display with the month selector controls only:
My control is declared as such:
<div id="datepickerDOBWrapper" ><input type="text" id="datepickerDOB"></div>
and initialized with a closure:
$(function() {
$("#datepickerDOB").datepicker();
});
I cannot find documentation that has the display options. This documentation does not help. Nor does this post that shows many options.