jQuery(document).ready(function(){
jQuery("input[display='week']").each(function(){
jQuery(this).datepicker({
dateFormat: jQuery(this).attr("dateformat"),
minDate: jQuery(this).attr("mindate"),
maxDate: jQuery(this).attr("maxdate"),
firstDay: jQuery(this).attr("firstday"),
changeYear: jQuery(this).attr("changeyear"),
yearRange: jQuery(this).attr("yearrange"),
showOtherMonths: true,
selectOtherMonths: true,
changeMonth: true,
showWeek: true,
beforeShow: function(dateText, inst){
jQuery(".ui-datepicker-calendar tbody").on("mousemove", "tr", function(){
jQuery(this).find("td a").addClass("ui-state-hover");
jQuery(this).find(".ui-datepicker-week-col").addClass("ui-state-hover");
});
jQuery(".ui-datepicker-calendar tbody").on("mouseleave", "tr", function(){
jQuery(this).find("td a").removeClass("ui-state-hover");
jQuery(this).find(".ui-datepicker-week-col").removeClass("ui-state-hover");
});
},
onClose: function(dateText, inst){
var date=jQuery(this).datepicker("getDate");
if(date!=null){
var dateFormat=inst.settings.dateFormat||jQuery(this).datepicker._defaults.dateFormat;
var endDate=new Date(date.getFullYear(), date.getMonth(), date.getDate() - date.getDay() + 6);
var endDateFormatted=jQuery.datepicker.formatDate(dateFormat, endDate, inst.settings);
jQuery(this).val(dateText + " - " + endDateFormatted);
}
jQuery('.ui-datepicker-calendar tbody tr').off('mousemove');
jQuery('.ui-datepicker-calendar tbody tr').off('mouseleave');
}});
});
});