refreshTask
Description
Refreshes the task and its related links
refreshTask: (id: string | number, refresh_links?: boolean) => 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");
var task = gantt.getTask(10);
task.text = "Task #10"; /*!*/
gantt.refreshTask(10); /*!*/
Details
You can use this method to repaint a task after changing its properties. Unlike updateTask, this method does not trigger the DataProcessor, and no updates will be sent to the server.
Related API
Related Guides
Need help?
Got a question about the documentation? Reach out to our technical support team for help and guidance. For custom component solutions, visit the Services page.