Bootstrap year picker example using datepicker js plugin

Bootstrap year picker example using datepicker js plugin

Bootstrap year picker example using datepicker js plugin

In this tutorial, you will know how to use year picker in your form using Bootstrap datepicker plugin.

In my last post, i told you about datepicker js plugin which is a simple jquery blugin built with bootstrap-datepicker.js to add flexible datepicker field to your form.

There are various option available with datepicker.

You need to pass extra option minViewMode with datepicker method that is used to set minimum limit for the view mode.

To get year picker you can set value of minViewMode either string 'years' or number value 2.

If you need to get month picker by year you need to use minViewMode:1 with format: 'mm-yyyy'.

See the given example :

  1. <html>
  2. <head>
  3. <title>Bootstrap year picker example using datepicker js plugin</title>
  4. <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
  5. <link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.5.0/css/bootstrap-datepicker.css" rel="stylesheet">
  6. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script>
  7. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
  8. <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.5.0/js/bootstrap-datepicker.js"></script> </head>
  9. </head>
  10. <body>
  11. <strong>Year Picker :</strong> <input class="form-control" type="text" placeholder="click to show datepicker" id="example1">
  12. <script type="text/javascript">
  13. // When the document is ready
  14. $(document).ready(function () {
  15. $('#example1').datepicker({
  16. minViewMode: 'years',
  17. autoclose: true,
  18.             format: 'yyyy'
  19. });
  20. });
  21. </script>
  22. </body>
  23. </html>

To get month picker use following script :

  1. $(document).ready(function () {
  2. $('#example1').datepicker({
  3. minViewMode: 1,
  4. autoclose: true,
  5. format: 'mm-yyyy'
  6. });
  7. });
Bootstrap datepicker example text input with specifying date format

Phone: (+91) 8800417876
Noida, 201301