我使用过zebra datepicker每周日历。我的星期从星期一到星期日开始。我想在周完成时启用日期。因此,只有当星期日(2014年8月24日)结束日期18(星期一)时才必须启用。以下是我的斑马周日历代码。
$(function () {
$(‘#weekdatepicker’).Zebra_DatePicker({
format: ‘m-d-Y’,
direction: -1,
first_day_of_week: 1,
disabled_dates: [''],
enabled_dates: ['* * * 1'],
show_other_months: true,
select_other_months: true,
onSelect: function (date) {
ngModelCtrl.$setViewValue(date);
scope.$apply();
}
});
});
请告诉我解决方案。提前致谢