'Show only Month and Year in jQuery UI DatePicker'에 해당되는 글 1건

  1. 2015.01.13 Show only Month and Year in jQuery UI DatePicker
98..Etc/jQuery2015. 1. 13. 18:58
반응형
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>datepicker demo</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
</head>
<body>
<div id="datepicker"></div>
<script>
$( "#datepicker" ).datepicker();
</script>
</body>
</html>

-----------------------------------------

<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">

<script src="http://code.jquery.com/jquery-1.9.1.js"></script>

<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>

<link rel="stylesheet" href="/resources/demos/style.css">

<style type="text/css">

.ui-datepicker-calendar {

    display: none;

}​

</style>

<script>

$(document).ready(function() {

   $('#txtDate').datepicker({

     changeMonth: true,

     changeYear: true,

     dateFormat: 'MM yy',


     onClose: function() {

        var iMonth = $("#ui-datepicker-div .ui-datepicker-month :selected").val();

        var iYear = $("#ui-datepicker-div .ui-datepicker-year :selected").val();

        $(this).datepicker('setDate', new Date(iYear, iMonth, 1));

     },


     beforeShow: function() {

       if ((selDate = $(this).val()).length > 0) 

       {

          iYear = selDate.substring(selDate.length - 4, selDate.length);

          iMonth = jQuery.inArray(selDate.substring(0, selDate.length - 5), 

                   $(this).datepicker('option', 'monthNames'));

          $(this).datepicker('option', 'defaultDate', new Date(iYear, iMonth, 1));

          $(this).datepicker('setDate', new Date(iYear, iMonth, 1));

       }

    }

  });

});

</script>

<input type="text" id="txtDate">


-----------------------------------------------------


jQuery UI Datepicker is a great control. The default behavior of the control shows dates along with Month and Year. But today for my requirement, I need to show only Month and Year as dropdown (with no dates). So when datepicker control is opened there should be only Month and Year dropdown. This was a bit challenging but after sometime I was able to achieve this.


How to do it?


First of all, hide the calendar area with dates. This can be done by setting "display:none" to ".ui-datepicker-calendar" CSS class. This class is responsible for styling the Date part area of the Calendar.

1.ui-datepicker-calendar {
2    display: none;
3}​

Now,

  • Set changeMonth and changeYear to true so that Month and Year appear as Dropdown.
  • Set date format to "MM yy".
  • jQuery DatePicker has "onClose" event, which is called when Datepicker gets closed. So using this event, fetch the selected Month and Year and setDate of Datepicker.
  • jQuery DatePicker also has "beforeShow" event, which is called before the datepicker is displayed. So this event will be used to Show the previously selected Month and Year as selected. If you don't use this event, then datepicker will always show the current month and current year, irrespective of your previous selection.
01$(document).ready(function() {
02   $('#txtDate').datepicker({
03     changeMonth: true,
04     changeYear: true,
05     dateFormat: 'MM yy',
06 
07     onClose: function() {
08        var iMonth = $("#ui-datepicker-div .ui-datepicker-month :selected").val();
09        var iYear = $("#ui-datepicker-div .ui-datepicker-year :selected").val();
10        $(this).datepicker('setDate'new Date(iYear, iMonth, 1));
11     },
12 
13     beforeShow: function() {
14       if ((selDate = $(this).val()).length > 0)
15       {
16          iYear = selDate.substring(selDate.length - 4, selDate.length);
17          iMonth = jQuery.inArray(selDate.substring(0, selDate.length - 5),
18                   $(this).datepicker('option''monthNames'));
19          $(this).datepicker('option''defaultDate'new Date(iYear, iMonth, 1));
20          $(this).datepicker('setDate'new Date(iYear, iMonth, 1));
21       }
22    }
23  });
24});​

See result below. 



If you want to show the buttonPanel as well (see below image) then set "showButtonPanel: true" in DatePicker options.


Feel free to contact me for any help related to jQuery, I will gladly help you.

Posted by 1010