drag_marker_class
Description
시간 축에서 이벤트의 강조된 기간에 적용되는 CSS 클래스를 정의합니다
drag_marker_class: (start: Date, end: Date, ev: any) => string
Parameters
start- (required) Date - 이벤트가 시작되는 날짜end- (required) Date - 이벤트가 종료되는 날짜ev- (required) object - 이벤트 객체
Returns
classname- (string) - 요소에 할당되는 css 클래스명
Example
scheduler.templates.drag_marker_class = function(start, end, event){
return "";
};
Details
예를 들어:
.myclass{
background: green;
}
scheduler.templates.drag_marker_class = function(start, end, event){
return "myclass";
};
Related API
Need help?
Got a question about the documentation? Reach out to our technical support team for help and guidance. For custom component solutions, visit the Services page.