在我的项目中,我在我的网页中使用了CalenderExtender
(随AJAX Control Toolkit一起提供)。
现在,我希望我的日历能够删除或禁用之前的日期。
我如何在CalenderExtender
中完成?
答案 0 :(得分:0)
请使用以下js来打击过去的日子:
function checkDate(sender, args) {
if (sender._selectedDate < new Date()) {
alert("You cannot select a day earlier than today!");
sender._selectedDate = new Date();
// set the date back to the current date
sender._textbox.set_Value(sender._selectedDate.format(sender._format))
}
}