Thank you for your response. The below code will get Tuesdays and Thursdays disabled but not the specific dates (11/10/2018, 11/11/2018 and 11/12/2018) Am I missing anything?
@(Html.Kendo().DatePicker()
.Name("Date1")
.Value(Model.Date1)
.DisableDates("handler")
)
<script>
var datesFromDataBase = [new Date(2018, 10, 10), new Date(2018, 10, 11), new Date(2018, 10, 12)]
function handler(x) {
if (x) {
return x.getDay() === 2 || x.getDay() === 4 || datesFromDataBase.indexOf(x) > 0;
}
}
</script>