When adjusting the numberOfMonths parameter to a higher value such as 6, I noticed that the datepicker display appears unusual with the background extending further than expected. Take a look at my demonstration on jsfiddle:
In this example, I am specifying 6 months using 1 row and 6 columns:
$(function() {
$( "#datepicker" ).datepicker({
showButtonPanel: false,
numberOfMonths: [1,6],
changeMonth: true,
changeYear: true,
maxDate: new Date(2014,08,11),
minDate: new Date(2006, 0, 1)
});
});
Any suggestions on how to resolve this issue and ensure that the background fits correctly?