showQuickInfo

주어진 작업에 대해 팝업 작업 폼을 엽니다

void showQuickInfo(string | number id);
idstring | number작업의 고유 식별자

Example

gantt.addTask({
    id:10,
    text:"Task #5",
    start_date:"02-09-2013",
    duration:28
}, "project_2");
 
window.setTimeout(function(){
    gantt.showQuickInfo(10);    
},1);

Related samples

Details

이 메서드는 Quick Info 확장 기능에서 제공되므로, quick_info 플러그인이 활성화되어 있는지 확인하세요.

See also
Back to top