1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
//Use a calendar for the start and end dates of periods
$([document]).on('focus', 'input.js-datepicker-period',function() {
$(".js-datepicker-period").datepicker({
viewMode: "months",
weekStart: 1,
daysOfWeekHighlighted: "6,0",
autoclose: true,
todayHighlight: true,
startDate: '-0m',
endDate:'+2y',
format: 'yyyy-mm-dd'
});
});
$([document]).on('change', 'input.js-datepicker-period',function() {
$(this).val(moment($(this).val(), 'YYYY-MM-DD').locale(navigator.language).format('L'));
}); |