Bootstrap Datepicker - Months and Years Only
jquery, twitter-bootstrap
Solution
How about this :
$("#datepicker").datepicker( {
format: "mm-yyyy",
viewMode: "months",
minViewMode: "months"
});
Reference : Datepicker for Bootstrap
For version 1.2.0 and newer, `viewMode` has changed to `startView`, so use:
$("#datepicker").datepicker( {
format: "mm-yyyy",
startView: "months",
minViewMode: "months"
});
Also see the documentation.
Problem
I am using bootstrap datepicker and my code is like following, Demo of the code on jsfiddle ``` <div class="input-append date" id="datepicker" data-date="02-2012" data-date-format="mm-yyyy"> <input type="text" readonly="readonly" name="date" > <span class="add-on"><i class="icon-th"></i></span> </div> $("#datepicker").datepicker({ viewMode: 'years', format: 'mm-yyyy' }); ``` The above code is working fine, but what I am trying to do is allow users pick months and years only. Could you please tell me how to do that?