Hello,
When a child's task start/stop date is changed, parent task is changed as well.
I need to disable this behavior. I want a parent task start/stop date to be changed only directly.
I tried this:
protected void RadGantt1_TaskUpdate(object sender, Telerik.Web.UI.Gantt.TaskEventArgs e){ while (((List<Telerik.Web.UI.Gantt.ITask>)e.Tasks).Count>1) { ((List<Telerik.Web.UI.Gantt.ITask>)e.Tasks).RemoveAt(0); }}
This works, but for all changes. So when % of completed is changed on a child, this is not changed on the parent task.
I need to know, what is the change when TaskUpdate is triggered on the server.
Or another solution.
Thank you.
