DHTMLX 调度程序时间轴点击 day_date
DHTMLX Scheduler timeline click on day_date
在具有 second_scale 的日程安排程序时间轴视图中,是否可以单击单个日期?我找到了,但我想知道这期间是否有活动。
有onXScaleClick, onXScaleDblClick events for the Timeline view. But in case, when you have 2 scales, they fire only for the second one. Check console in the snippet可以证明。
尽管如此,您可以使用 js 为第一个秤添加 onclick 事件监听器:
var dateScaleEl = document.querySelector(".dhx_second_scale_bar");
dateScaleEl.onclick = function() {
var targetDate = scheduler.getState().date;
console.log(targetDate);
}
Demo.
getState()是获取活动日期的方法
在具有 second_scale 的日程安排程序时间轴视图中,是否可以单击单个日期?我找到了
有onXScaleClick, onXScaleDblClick events for the Timeline view. But in case, when you have 2 scales, they fire only for the second one. Check console in the snippet可以证明。
尽管如此,您可以使用 js 为第一个秤添加 onclick 事件监听器:
var dateScaleEl = document.querySelector(".dhx_second_scale_bar");
dateScaleEl.onclick = function() {
var targetDate = scheduler.getState().date;
console.log(targetDate);
}
Demo.
getState()是获取活动日期的方法