DHTMLX甘特图如何隐藏parent任务?
DHTMLX gantt chart hide parent tasks how?
在 DHTMLX 甘特图中
我需要在左侧面板中显示所有层次结构任务,例如
- Parent
1.1 子Parent
1.1.1 任务
但是右侧面板我只需要显示 child 任务而不是 parent 和子 parent。
您可以参考下面的截图'
参考Link:https://dhtmlx.com/docs/products/dhtmlxGantt/02_features.html
需要:
1. 我需要隐藏战略定义和 Obtain/create... 仅右侧蓝色条。
请使用 task_class template 指定 CSS class 将应用于带有子项的任务栏以隐藏它们
和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;}
在 DHTMLX 甘特图中
我需要在左侧面板中显示所有层次结构任务,例如
- Parent
1.1 子Parent
1.1.1 任务
但是右侧面板我只需要显示 child 任务而不是 parent 和子 parent。
您可以参考下面的截图'
参考Link:https://dhtmlx.com/docs/products/dhtmlxGantt/02_features.html
需要: 1. 我需要隐藏战略定义和 Obtain/create... 仅右侧蓝色条。
请使用 task_class template 指定 CSS class 将应用于带有子项的任务栏以隐藏它们
和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;}