我在使用 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 一起正常工作,这似乎不起作用。
有人有快速解决方案吗?