forked from mirrors/easyappointments
Due to jquery ui datepicker issue the unavailable dates will be greyed out manually by adding the required classes.
This commit is contained in:
parent
0522186a4e
commit
b9e24f7baf
1 changed files with 6 additions and 8 deletions
|
@ -230,15 +230,13 @@ window.FrontendBookApi = window.FrontendBookApi || {};
|
||||||
$('#available-hours').text(EALang['no_available_hours']);
|
$('#available-hours').text(EALang['no_available_hours']);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Apply the new beforeShowDayHandler method to the #select-date datepicker.
|
// Grey out unavailable dates.
|
||||||
var beforeShowDayHandler = function(date) {
|
$('#select-date .ui-datepicker-calendar td:not(.ui-datepicker-other-month)').each(function(index, td) {
|
||||||
if ($.inArray(date.toString('yyyy-MM-dd'), response) != -1) {
|
selectedDate.set({day: index + 1});
|
||||||
return [false];
|
if ($.inArray(selectedDate.toString('yyyy-MM-dd'), response) != -1) {
|
||||||
|
$(td).addClass('ui-datepicker-unselectable ui-state-disabled');
|
||||||
}
|
}
|
||||||
return [true];
|
});
|
||||||
};
|
|
||||||
|
|
||||||
$('#select-date').datepicker('option', 'beforeShowDay', beforeShowDayHandler);
|
|
||||||
})
|
})
|
||||||
.fail(GeneralFunctions.ajaxFailureHandler);
|
.fail(GeneralFunctions.ajaxFailureHandler);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue