{timelineName}_row_class

타임라인 뷰에서 행에 할당될 CSS 클래스를 정의합니다.

sectionobject섹션 객체
timelineobject타임라인 객체

Available only in PRO Edition

Example

scheduler.templates.timeline_row_class = function(section, timeline){
    return "";
};

Applicable views:타임라인 뷰
Details

이 템플릿을 사용하려면 timeline 플러그인이 활성화되어 있어야 합니다.

기본 구현 예시는 다음과 같습니다:

scheduler.templates.{timelineName}_row_class = function(section, timeline){
    if(timeline.folder_events_available && section.children){
        return "folder";
    }
    return "";
};
See also
Change log

v5.3.9에 추가됨

맨 위로