showQuickInfo

displays the pop-up task form for the specified task

void showQuickInfo(string| number id);
idstring| numberthe task id

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

This method is defined in the Quick Info extension, so you need to activate the quick_info plugin.

See also
Back to top