quick_info_date

팝업 편집 폼에 표시되는 날짜를 설정합니다

startDate작업이 시작될 예정인 날짜
endDate작업이 완료될 예정인 날짜
taskTask작업 객체

Example

gantt.templates.quick_info_date = function(start, end, task){
       return gantt.templates.task_time(start, end, task);
};

Related samples

Details

이 템플릿은 Quick Info 확장의 일부이므로, quick_info 플러그인이 활성화되어 있는지 확인하세요.

See also
Back to top