Hi,
I want to filter a datasource like this:
0: {taskID:1, taskName:"x1", subtasks:{id:12, name:"Oscar"}}....
I want to filter the parent tasks by taskName:
var obj2 = $("#op_monitoring").ejGantt("instance");
var predicate = new ej.Predicate("taskName", ej.FilterOperators.equal, "", false);
obj2.filterContent(predicate);
Filtering like this the parent tasks are filtered ok by taskName, but the subtasks are hidden because the have not the taskName filtered by. Any way to tell the ejPredicate only filter parent tasks without hiding their subtasks?
Thanks.