在dhtmlx迷你日历上禁用过去的日期

时间:2014-02-05 10:54:38

标签: javascript php jquery dhtmlx-scheduler

我已实施DHTMLX计划以在我的网站上显示活动。仪表板上的调度程序也有DHTMLX日历,用于为dhtmlx调度程序选择周。

这是一个示例: http://docs.dhtmlx.com/scheduler/samples/05_calendar/05_plain_structure.html

这是我编写的用于生成DHTMLX日历的代码。

var calendar = scheduler.renderCalendar({
                    container:"cal_here",
                    date:scheduler._date,
                    navigation:true,
                    handler:function(nwdate,calendar){
                    var date = new Date(nwdate);
                    getdate=date.getFullYear()+ '-' + (date.getMonth() + 1)+ '-' +date.getDate();
                    scheduler.setCurrentView(date, scheduler._mode);
                    }
                });

我查看了文档,但找不到任何有用的信息。

2 个答案:

答案 0 :(得分:0)

更新:

您可以使用setSensitiveRange

http://docs.dhtmlx.com/doku.php?id=dhtmlxcalendar:api_method_dhtmlxcalendar_setsensitive

将null作为第二个参数传递

答案 1 :(得分:0)

您可以为html日历初始化日期 在form_load中添加此代码!

> scheduler.InitialDate = new DateTime(2015, 01, 01);

您可能想了解更多信息,请访问以下网站;

  

http://blog.scheduler-net.com/post/simple-event-calendar-asp-net.aspx