타임라인 뷰에서 행에 할당될 CSS 클래스를 정의합니다.
section | object | 섹션 객체 |
timeline | object | 타임라인 객체 |
Available only in PRO Edition
scheduler.templates.timeline_row_class = function(section, timeline){
return "";
};
이 템플릿을 사용하려면 timeline 플러그인이 활성화되어 있어야 합니다.
기본 구현 예시는 다음과 같습니다:
scheduler.templates.{timelineName}_row_class = function(section, timeline){
if(timeline.folder_events_available && section.children){
return "folder";
}
return "";
};
v5.3.9에 추가됨
맨 위로