I am using daterangepicker 3 download.
$('#pa_date*').daterangepicker({
singleDatePicker: true,
showDropdowns: true,
minDate: min,
maxDate: max,
format: 'DD/MM/YYYY'
}).on('apply.daterangepicker', function (ev, picker) {
alert(picker.startDate.format('MM/YYYY'));
});
He shows me the full daterangepicker:

I want to hide the calendar and show only the years and months, for example:

source
share