Angular を使用した Kendo Date Picker で週末と非稼働日を無効にするのに少し苦労しています
私がこれまでに持っているのは
$scope.dtpFrmOptions = {
change: startChange,
format: "dd/MMM/yyyy",
dates: $scope.holidaylist, //passing the disabledDays array to the template
month: {
// template for dates in month view
content: '# if ($.inArray(+data.date, data.dates) != -1) { #' +
'<div class="disabledDay">#= data.value #</div>' +
'# } else { #' +
'#= data.value #' +
'# } #'
},
open: function (e) {
$(".disabledDay").parent().removeClass("k-link") //removing this class makes the day unselectable
$(".disabledDay").parent().removeAttr("href") //this removes the hyperlink styling
}
}
しかし、JQuery の選択は angular では適切に機能しないため、これは機能していないようです。
誰でも簡単な解決策がありますか?