Skip to main content

showQuickInfo

Description

Displays the pop-up task form for the specified task

showQuickInfo: (id: string | number) => void

Parameters

  • id - (required) string | number - the 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);

Details

note

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