Can Datepicker be used as a month Calendar picker?
I wonder if it is possible 开发者_StackOverflow中文版to user Jquery ui datepicker to only show the month/year part and not the days.
I know I can get the month and year with changeMonth and changeYear options, but how can I prevent the days from showing at all?
Try using CSS:
.ui-datepicker-calendar {
display: none;
}
精彩评论