시간 축에서 이벤트의 강조된 기간에 적용되는 CSS 클래스를 정의합니다
start | Date | 이벤트가 시작되는 날짜 |
end | Date | 이벤트가 종료되는 날짜 |
ev | object | 이벤트 객체 |
scheduler.templates.drag_marker_class = function(start, end, event){
return "";
};
예를 들어:
.myclass{
background: green;
}
scheduler.templates.drag_marker_class = function(start, end, event){
return "myclass";
};