在DHTMLX甘特图中
我需要在左侧面板中显示所有层次结构任务,例如
但是右侧面板中,我只需要显示子任务,而不是父级和子级。
参考链接:https://dhtmlx.com/docs/products/dhtmlxGantt/02_features.html
需要: 1.我需要隐藏战略定义并获取/创建...仅右侧蓝色条。
答案 0 :(得分:1)
请使用task_class template指定将应用于带有孩子的任务栏以隐藏它们的CSS类
和getChildren方法来检查目标任务是否具有第一级子任务:
gantt.templates.task_class = function(start, end, task){
var children = gantt.getChildren(task.id);
if(children.length)
return "hideTask";
return "";
};
CSS:
.hideTask{visibility: hidden;}