Hide rows in Gantt Asked by Martijn10 years ago. Is it possible to hide a (complete) row in the Gantt as it is possible in the Schedule (via row - filter)? I can select rows, but am unable to hide them as far as I can see, is that correct? Ifso, any future plans to support this? how-tojavascriptganttrowfilter
Answer posted by Dan Letecky [DayPilot]10 years ago. The row filtering API is not implemented in the Gantt chart at the moment. However, you can hide the row by setting .row.hidden attribute of the task to true: var task = dp.tasks.list[0[; if (!task.row) { task.row = {}; } task.row.hidden = true; dp.update();