onTimelineCreated

Timeline 뷰가 설정된 직후에 트리거되며, 페이지에 아직 표시되기 전 상태에서 발생합니다 (Timeline 뷰에만 적용됨)

void onTimelineCreated(object config);
configobjectTimeline 뷰의 설정 객체

Example

scheduler.attachEvent("onTimelineCreated", function (config){
    //여기에 커스텀 로직 작성
});

Details

이 이벤트는 createTimelineView 메서드에서 호출됩니다.

맨 위로